We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e60e807 commit b1ac266Copy full SHA for b1ac266
docs/develop/optimizations.rst
@@ -33,7 +33,7 @@ Variables
33
MicroPython processes local and global variables differently. Global variables
34
are stored and looked up from a global dictionary that is allocated on the heap
35
(note that each module has its own separate dict, so separate namespace).
36
-Local variables on the other hand are are stored on the Python value stack, which may
+Local variables on the other hand are stored on the Python value stack, which may
37
live on the C stack or on the heap. They are accessed directly by their offset
38
within the Python stack, which is more efficient than a global lookup in a dict.
39
0 commit comments