Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpx/lua-cjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Pulford <mark@kyne.com.au>2011-12-24 11:50:48 +0400
committerMark Pulford <mark@kyne.com.au>2011-12-24 11:50:48 +0400
commita9a14cac7c31d0bf9ea77221a4315f4bed0ab05b (patch)
tree0be7d2e38649ed45cbf17341da932a18997a5c63 /lua_cjson.c
parentb4f1c4a7bcc306286ada61f6ecf2c78ef4cffa67 (diff)
Fix typo in lua_cjson.c
Diffstat (limited to 'lua_cjson.c')
-rw-r--r--lua_cjson.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua_cjson.c b/lua_cjson.c
index b3c816d..0f6d675 100644
--- a/lua_cjson.c
+++ b/lua_cjson.c
@@ -631,7 +631,7 @@ static void json_append_number(lua_State *l, strbuf_t *json, int index,
/* Some platforms may print -nan, just hard code it */
strbuf_append_mem(json, "nan", 3);
} else {
- /* Lowest double printed with %.14g is 21 characters long:
+ /* Longest double printed with %.14g is 21 characters long:
* -1.7976931348623e+308
*
* Use 32 to include the \0, and a few extra just in case..