Skip to content
This repository was archived by the owner on Apr 24, 2020. It is now read-only.

fixed decorator ref #774

Merged
merged 1 commit into from
Nov 27, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions source/rst/numba.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <python_advanced_features>` but you can skip the details at this stage.)

Let's see how this is done.

Expand Down