Skip to content

Commit

Permalink
fix json.indent docs (#429)
Browse files Browse the repository at this point in the history
  • Loading branch information
Maslino authored Aug 22, 2023
1 parent 48308d4 commit 0177bdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/stdlib-json.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ json := import("json")
- `encode(o object) => bytes`: Returns the JSON string (bytes) of the object.
Unlike Go's JSON package, this function does not HTML-escape texts, but, one
can use `html_escape` function if needed.
- `indent(b string/bytes) => bytes`: Returns an indented form of input JSON
- `indent(b string/bytes, prefix string, indent string) => bytes`: Returns an indented form of input JSON
bytes string.
- `html_escape(b string/bytes) => bytes`: Return an HTML-safe form of input
JSON bytes string.
Expand All @@ -22,7 +22,7 @@ json := import("json")
json := import("json")

encoded := json.encode({a: 1, b: [2, 3, 4]}) // JSON-encoded bytes string
indentded := json.indent(encoded) // indented form
indentded := json.indent(encoded, "", " ") // indented form
html_safe := json.html_escape(encoded) // HTML escaped form

decoded := json.decode(encoded) // {a: 1, b: [2, 3, 4]}
Expand Down

0 comments on commit 0177bdb

Please sign in to comment.