aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gleam/bool.gleam8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/gleam/bool.gleam b/src/gleam/bool.gleam
index f80385c..6728d00 100644
--- a/src/gleam/bool.gleam
+++ b/src/gleam/bool.gleam
@@ -211,14 +211,6 @@ pub fn to_int(bool: Bool) -> Int {
/// > to_string(False)
/// "False"
///
-/// > import gleam/string
-/// > string.lowercase(to_string(True))
-/// "true"
-///
-/// > import gleam/string
-/// > string.lowercase(to_string(False))
-/// "false"
-///
pub fn to_string(bool: Bool) -> String {
case bool {
False -> "False"