From cf96be60dc225603b14c97570596db4f482ef070 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Tue, 27 Dec 2016 00:55:42 +0300 Subject: [PATCH] py/misc.h: Typo fix in comment. --- py/misc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)