From e3737b858a5422be22b5c8d6141e83ab3ec358d4 Mon Sep 17 00:00:00 2001
From: Paul Sokolovsky <pfalcon@users.sourceforge.net>
Date: Thu, 17 Jul 2014 17:48:35 +0300
Subject: [PATCH] formatfloat.c: Typo fix in comment.

---
 py/formatfloat.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/py/formatfloat.c b/py/formatfloat.c
index caecb0f29..d1b12cdd5 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++ = '?';
-- 
GitLab