From 081bea3db95a226e9f2cce56666eea90153d6454 Mon Sep 17 00:00:00 2001 From: "Christine P. Chai" Date: Tue, 11 Feb 2025 19:58:21 -0800 Subject: [PATCH] DOC: Update the Numba jit links in window.rst --- doc/source/user_guide/window.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/user_guide/window.rst b/doc/source/user_guide/window.rst index 0581951d5bfad..406d77d5b8caa 100644 --- a/doc/source/user_guide/window.rst +++ b/doc/source/user_guide/window.rst @@ -356,11 +356,11 @@ See :ref:`enhancing performance with Numba ` for general us Numba will be applied in potentially two routines: -#. If ``func`` is a standard Python function, the engine will `JIT `__ the passed function. ``func`` can also be a JITed function in which case the engine will not JIT the function again. +#. If ``func`` is a standard Python function, the engine will `JIT `__ the passed function. ``func`` can also be a JITed function in which case the engine will not JIT the function again. #. The engine will JIT the for loop where the apply function is applied to each window. The ``engine_kwargs`` argument is a dictionary of keyword arguments that will be passed into the -`numba.jit decorator `__. +`numba.jit decorator `__. These keyword arguments will be applied to *both* the passed function (if a standard Python function) and the apply for loop over each window.