Cross some more to-do items off the list.

This commit is contained in:
Jordan Bancino 2022-07-27 17:26:56 -04:00
parent 39af3c2194
commit ee1909e534

View file

@ -305,11 +305,10 @@ Implement a JSON library using the hash map and array
<li><s>Proper string encoding</s></li>
<li><s>Proper string decoding</s></li>
<li>
"Canonical JSON"
<s><q>Canonical JSON</q></s>
<ul>
<li>Keys are sorted lexicographically by Unicode code point
(4bytes)</li>
<li>Floats are not allowed (fail on encountering a float)</li>
<li><s></s>Keys are sorted lexicographically</s></li>
<li><s></s>Floats are not allowed (ignore any float values)</s></li>
<li><s>Encode as UTF-8 instead of using <code>\u</code> escapes</s></li>
<li><s>Decode encoded strings to UTF-8</s></li>
</ul>