# HG changeset patch # User Chris Cannam # Date 1492960880 -3600 # Sun Apr 23 16:21:20 2017 +0100 # Node ID e3b971fb65ce14ef82ac562b25f019b583136b63 # Parent 10da24f50102d14138fe375ed7f0e54a9595bdb8 Text fix diff --git a/json.sml b/json.sml --- a/json.sml +++ b/json.sml @@ -12,8 +12,8 @@ exist at the time of writing, as listed in "Parsing JSON is a Minefield" (http://seriot.ch/parsing_json.php) - * Parses JSON from string objects, explodes strings, parses in two - passes: therefore not suitable for large input files + * Two-pass parser using naive exploded strings, therefore not very + fast and not suitable for large input files * Only supports UTF-8 input, not UTF-16 or UTF-32. Doesn't check that JSON strings are valid UTF-8 -- the caller must do that --