From 0b101d3fd02a4cea0bd977b01185c7eca604ec41 Mon Sep 17 00:00:00 2001 From: PgBiel <9021226+PgBiel@users.noreply.github.com> Date: Mon, 8 Apr 2024 00:30:22 -0300 Subject: more docs fixes --- src/gleam/json.gleam | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/gleam/json.gleam b/src/gleam/json.gleam index c5285c8..3c50712 100644 --- a/src/gleam/json.gleam +++ b/src/gleam/json.gleam @@ -127,7 +127,7 @@ fn do_to_string(a: Json) -> String /// Convert a JSON value into a string builder. /// -/// Where possible prefer this function to the `to_string` function as it is +/// Where possible prefer this function to the `to_string` function as it is /// slower than this function, and BEAM VM IO is optimised for sending /// `StringBuilder` data. /// @@ -197,7 +197,7 @@ pub fn int(input: Int) -> Json { @external(javascript, "../gleam_json_ffi.mjs", "identity") fn do_int(a: Int) -> Json -/// Encode an float into JSON. +/// Encode a float into JSON. /// /// ## Examples /// @@ -231,7 +231,7 @@ pub fn null() -> Json { @external(javascript, "../gleam_json_ffi.mjs", "do_null") fn do_null() -> Json -/// Encode an optional value into JSON, using null if it the `None` variant. +/// Encode an optional value into JSON, using null if it is the `None` variant. /// /// ## Examples /// -- cgit v1.2.3