diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-12-27 00:55:42 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-12-27 01:05:30 +0300 |
commit | cf96be60dc225603b14c97570596db4f482ef070 (patch) | |
tree | de68e4a6ad8a47dbb4bfcc3b4804a7f7f7c7f80c /py | |
parent | 05aebb920614cad89b4a626b02e74eb334b732aa (diff) | |
download | micropython-cf96be60dc225603b14c97570596db4f482ef070.tar.gz micropython-cf96be60dc225603b14c97570596db4f482ef070.zip |
py/misc.h: Typo fix in comment.
Diffstat (limited to 'py')
-rw-r--r-- | py/misc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -46,7 +46,7 @@ typedef unsigned int uint; #define MAX(x, y) ((x) > (y) ? (x) : (y)) #endif -/** memomry allocation ******************************************/ +/** memory allocation ******************************************/ // TODO make a lazy m_renew that can increase by a smaller amount than requested (but by at least 1 more element) |