diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-12-03 01:41:26 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-12-03 01:41:26 +0200 |
commit | 30d0cf48851422b5c251308cad0e82af9d509291 (patch) | |
tree | 0b0fcc0d96d794f7e31e9455916443d7d6940f18 /unix/mpconfigport.h | |
parent | 75feece208fbf48c27099a4279cefcef42de4751 (diff) | |
download | micropython-30d0cf48851422b5c251308cad0e82af9d509291.tar.gz micropython-30d0cf48851422b5c251308cad0e82af9d509291.zip |
unix/mpconfigport: Typo fix in comment.
Diffstat (limited to 'unix/mpconfigport.h')
-rw-r--r-- | unix/mpconfigport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/mpconfigport.h b/unix/mpconfigport.h index 587af23c15..7a4b6e523e 100644 --- a/unix/mpconfigport.h +++ b/unix/mpconfigport.h @@ -174,7 +174,7 @@ typedef long mp_int_t; // must be pointer size typedef unsigned long mp_uint_t; // must be pointer size #else // These are definitions for machines where sizeof(int) == sizeof(void*), -// regardless for actual size. +// regardless of actual size. typedef int mp_int_t; // must be pointer size typedef unsigned int mp_uint_t; // must be pointer size #endif |