Skip to content

Commit

Permalink
Merge pull request numba#6495 from stuartarchibald/fix/literal_list_doc1
Browse files Browse the repository at this point in the history
Fix typo in literal list docs.
  • Loading branch information
sklam authored Nov 17, 2020
2 parents eb20ebe + 24cb5b5 commit 56f52a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/reference/pysupported.rst
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ Important things to note about these kinds of lists:
supported e.g. ``len()``.
#. Dynamic access of items is not possible, e.g. ``some_list[x]``, for a
value ``x`` which is not a compile time constant. This is because it's
impossible statically determine the type of the item being accessed.
impossible to statically determine the type of the item being accessed.
#. Inside the compiler, these lists are actually just tuples with some extra
things added to make them look like they are lists.
#. They cannot be returned to the interpreter from a compiled function.
Expand Down

0 comments on commit 56f52a4

Please sign in to comment.