aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gleam/string_builder.gleam20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/gleam/string_builder.gleam b/src/gleam/string_builder.gleam
index 5792ca8..06916bc 100644
--- a/src/gleam/string_builder.gleam
+++ b/src/gleam/string_builder.gleam
@@ -248,13 +248,13 @@ fn do_replace(a: StringBuilder, b: String, c: String) -> StringBuilder
/// ## Examples
///
/// ```gleam
-/// > from_strings(["a", "b"]) == from_string("ab")
-/// False
+/// from_strings(["a", "b"]) == from_string("ab")
+/// // -> False
/// ```
///
/// ```gleam
-/// > is_equal(from_strings(["a", "b"]), from_string("ab"))
-/// True
+/// is_equal(from_strings(["a", "b"]), from_string("ab"))
+/// // -> True
/// ```
///
pub fn is_equal(a: StringBuilder, b: StringBuilder) -> Bool {
@@ -270,18 +270,18 @@ fn do_is_equal(a: StringBuilder, b: StringBuilder) -> Bool
/// ## Examples
///
/// ```gleam
-/// > from_string("ok") |> is_empty
-/// False
+/// from_string("ok") |> is_empty
+/// // -> False
/// ```
///
/// ```gleam
-/// > from_string("") |> is_empty
-/// True
+/// from_string("") |> is_empty
+/// // -> True
/// ```
///
/// ```gleam
-/// > from_strings([]) |> is_empty
-/// True
+/// from_strings([]) |> is_empty
+/// // -> True
/// ```
///
pub fn is_empty(builder: StringBuilder) -> Bool {