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.