Merge pull request #1725 from mprevide/patch-1

fix example for json.parse
pull/1734/head
kelseiv 2020-10-28 13:54:36 -07:00 committed by GitHub
commit 26f7a4ff89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ _**Function type:** Type conversion_
import "experimental/json"
json.parse(
data: bytes(v: "{\"\"a\"\":1,\"\"b\"\":2,\"\"c\"\":3}")
data: bytes(v: "{\"a\":1,\"b\":2,\"c\":3}")
)
```