diff --git a/source/rst/numba.rst b/source/rst/numba.rst index e5975f7e..45efcf41 100644 --- a/source/rst/numba.rst +++ b/source/rst/numba.rst @@ -197,8 +197,9 @@ In the code above we created a JIT compiled version of ``qm`` via the call qm_numba = jit(qm) -In practice this would typically be done using an alternative syntax based on -decorators. +In practice this would typically be done using an alternative *decorator* syntax. + +(We will explain all about decorators in a :doc:`later lecture ` but you can skip the details at this stage.) Let's see how this is done.