From 24cb5b51c9dcfa53ec63560e243c4f0ed262fb3f Mon Sep 17 00:00:00 2001 From: Stuart Archibald Date: Tue, 17 Nov 2020 19:43:43 +0000 Subject: [PATCH] Fix typo in literal list docs. As title. --- docs/source/reference/pysupported.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/reference/pysupported.rst b/docs/source/reference/pysupported.rst index 0e6465f15fa..69bbf32df8d 100644 --- a/docs/source/reference/pysupported.rst +++ b/docs/source/reference/pysupported.rst @@ -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.