From e61a677f588395f4666b40274189d517210d1257 Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Tue, 7 Jan 2014 15:13:45 -0500 Subject: [PATCH] Fix a broken example in the spec 3.14 as a key is "3" : { "14" --- HOCON.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/HOCON.md b/HOCON.md index e85f1b4b..72776176 100644 --- a/HOCON.md +++ b/HOCON.md @@ -506,7 +506,8 @@ single values that would normally have another type become strings. - `true : 42` is `"true" : 42` - - `3.14 : 42` is `"3.14" : 42` + - `3 : 42` is `"3" : 42` + - `3.14 : 42` is `"3" : { "14" : 42 }` As a special rule, the unquoted string `include` may not begin a path expression in a key, because it has a special interpretation