Skip to content

Commit eac4b11

Browse files
authored
Merge pull request #22 from musikinformatik/final-touches
final touches on the doc
2 parents 0dd241e + 26449ad commit eac4b11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

HelpSource/Classes/JSONlib.schelp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ EMPHASIS::JSON (JavaScript Object Notation) is a lightweight data-interchange fo
3737

3838
JSON is a common exchange format in the internet as Browsers provide a JavaScript runtime and JSON is the native exchange format for JavaScript objects.
3939
This led to wide adaption as it is a fixed standard with a variety of use cases.
40-
The network communication abilties of SuperCollider are restricted to link::Guides/OSC_communication:: which can only transfer link::Classes/Array:: but no nested objects, but by using a JSON string we can transfer nested key-value pairs (see link::#Transfer nested objects via OSC::).
40+
The network communication abilties of SuperCollider are restricted to link::Guides/OSC_communication:: which can only transfer link::Classes/Array::s but no nested dictionaries. But by using a JSON string we can transfer nested key-value pairs (see link::#Transfer nested objects via OSC::).
4141

4242
For more information consult https://www.json.org/
4343

@@ -67,7 +67,7 @@ Consider the JSON code::{"number": 42}::
6767

6868
code::
6969
j = "{\"number\": 42\}";
70-
j.parseJSON()["number"].class;
70+
j.parseJSON["number"].class;
7171
// -> String
7272
JSONlib.convertToSC(j)[\number].class;
7373
// -> Integer

0 commit comments

Comments
 (0)