summaryrefslogtreecommitdiffstatshomepage
path: root/py
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-12-27 00:55:42 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-12-27 01:05:30 +0300
commitcf96be60dc225603b14c97570596db4f482ef070 (patch)
treede68e4a6ad8a47dbb4bfcc3b4804a7f7f7c7f80c /py
parent05aebb920614cad89b4a626b02e74eb334b732aa (diff)
downloadmicropython-cf96be60dc225603b14c97570596db4f482ef070.tar.gz
micropython-cf96be60dc225603b14c97570596db4f482ef070.zip
py/misc.h: Typo fix in comment.
Diffstat (limited to 'py')
-rw-r--r--py/misc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/misc.h b/py/misc.h
index e60665e591..7584bc0176 100644
--- a/py/misc.h
+++ b/py/misc.h
@@ -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)