diff options
author | PgBiel <9021226+PgBiel@users.noreply.github.com> | 2024-04-08 00:08:53 -0300 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-04-08 11:47:59 +0100 |
commit | 087a6594da66518432f4e31ed66fb1044622378c (patch) | |
tree | d7a2822fc8565805ba101331c3b01a5ea8e36d2c /src | |
parent | 1fb6177fa45e0455121da9e1955fc44b581ef623 (diff) | |
download | gleam_json-087a6594da66518432f4e31ed66fb1044622378c.tar.gz gleam_json-087a6594da66518432f4e31ed66fb1044622378c.zip |
fix string example
Diffstat (limited to 'src')
-rw-r--r-- | src/gleam/json.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam/json.gleam b/src/gleam/json.gleam index e83a318..c5285c8 100644 --- a/src/gleam/json.gleam +++ b/src/gleam/json.gleam @@ -151,7 +151,7 @@ fn do_to_string_builder(a: Json) -> StringBuilder /// ## Examples /// /// ```gleam -/// > to_string("Hello!") +/// > to_string(string("Hello!")) /// "\"Hello!\"" /// ``` /// |