diff --git a/HelpSource/Classes/JSONlib.schelp b/HelpSource/Classes/JSONlib.schelp index df4cc87..e8670e3 100644 --- a/HelpSource/Classes/JSONlib.schelp +++ b/HelpSource/Classes/JSONlib.schelp @@ -28,7 +28,8 @@ j = "{\"hello\": 42}"; JSONlib.convertToSC(j); // -> ( 'hello': 42 ) -// to avoid the need for escaping strings, you can also use a symbol: +// to avoid the need for escaping strings, you can also use a symbol. +// (note that you still need to escape ' if they are in your json) j = '{"hello": 42}'; JSONlib.convertToSC(j); // -> ( 'hello': 42 )