Skip to content

Commit b1ac266

Browse files
committedApr 28, 2024
docs/develop/optimizations: Fix typo identified in issue 14391.
Signed-off-by: Matt Trentini <[email protected]>
1 parent e60e807 commit b1ac266

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎docs/develop/optimizations.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Variables
3333
MicroPython processes local and global variables differently. Global variables
3434
are stored and looked up from a global dictionary that is allocated on the heap
3535
(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
36+
Local variables on the other hand are stored on the Python value stack, which may
3737
live on the C stack or on the heap. They are accessed directly by their offset
3838
within the Python stack, which is more efficient than a global lookup in a dict.
3939

0 commit comments

Comments
 (0)