diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-07-17 17:48:35 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-07-17 20:45:58 +0300 |
commit | e3737b858a5422be22b5c8d6141e83ab3ec358d4 (patch) | |
tree | 2097e1726546680388b5042f392d42ca0acbbcf3 /py/formatfloat.c | |
parent | a4022c92f037e38822f4652ee142670193bafcf4 (diff) | |
download | micropython-e3737b858a5422be22b5c8d6141e83ab3ec358d4.tar.gz micropython-e3737b858a5422be22b5c8d6141e83ab3ec358d4.zip |
formatfloat.c: Typo fix in comment.
Diffstat (limited to 'py/formatfloat.c')
-rw-r--r-- | py/formatfloat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/formatfloat.c b/py/formatfloat.c index caecb0f29b..d1b12cdd5b 100644 --- a/py/formatfloat.c +++ b/py/formatfloat.c @@ -75,7 +75,7 @@ int format_float(float f, char *buf, size_t buf_size, char fmt, int prec, char s if (buf_size < 7) { // Smallest exp notion is -9e+99 which is 6 chars plus terminating - // nulll. + // null. if (buf_size >= 2) { *s++ = '?'; |