Skip to content

Commit eb32372

Browse files
authored
DOC: Update the Numba jit links in window.rst (#60917)
1 parent 05de253 commit eb32372

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/source/user_guide/window.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -356,11 +356,11 @@ See :ref:`enhancing performance with Numba <enhancingperf.numba>` for general us
356356

357357
Numba will be applied in potentially two routines:
358358

359-
#. If ``func`` is a standard Python function, the engine will `JIT <https://numba.pydata.org/numba-doc/latest/user/overview.html>`__ the passed function. ``func`` can also be a JITed function in which case the engine will not JIT the function again.
359+
#. If ``func`` is a standard Python function, the engine will `JIT <https://numba.readthedocs.io/en/stable/user/overview.html>`__ the passed function. ``func`` can also be a JITed function in which case the engine will not JIT the function again.
360360
#. The engine will JIT the for loop where the apply function is applied to each window.
361361

362362
The ``engine_kwargs`` argument is a dictionary of keyword arguments that will be passed into the
363-
`numba.jit decorator <https://numba.pydata.org/numba-doc/latest/reference/jit-compilation.html#numba.jit>`__.
363+
`numba.jit decorator <https://numba.readthedocs.io/en/stable/user/jit.html>`__.
364364
These keyword arguments will be applied to *both* the passed function (if a standard Python function)
365365
and the apply for loop over each window.
366366

0 commit comments

Comments
 (0)