diff --git a/CHANGELOG.md b/CHANGELOG.md index a0ef4798..bae555c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,7 +45,7 @@ version development version 1.1.3 --------------------------- -* Fix issues with examples (#653, #654, #661, #662, #663). Thanks to @stxue1! +* Fix issues with examples (#653, #654, #661, #662, #663, #664). Thanks to @stxue1! version 1.1.2 --------------------------- diff --git a/SPEC.md b/SPEC.md index 7ba8ed59..15052a62 100644 --- a/SPEC.md +++ b/SPEC.md @@ -5684,7 +5684,8 @@ Example input: "allow_nested.msg1": "hello", "allow_nested.msg2": "goodbye", "allow_nested.my_ints": [1, 2, 3], - "allow_nested.ref_file": "hello.txt" + "allow_nested.ref_file": "hello.txt", + "allow_nested.repeat2.i": 2 } ``` @@ -5694,7 +5695,6 @@ Example output: { "allow_nested.lines1": ["hello", "hello", "hello"], "allow_nested.lines2": ["goodbye", "goodbye"], - "allow_nested.repeat2.i": 2, "allow_nested.incrs": [2, 3, 4] } ```