diff options
author | Samuel Burkhardt <samuel.burkhardt.418@gmail.com> | 2024-03-22 10:56:27 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-03-22 14:21:22 +0000 |
commit | d34d58088a2bf7d9ddaff914c61676f4595d842f (patch) | |
tree | 97ae44455d019094638fd8b112850123fe86d0c9 /src | |
parent | 516ddf1bd4da32dc60366811e1a0e8e0a5951d46 (diff) | |
download | gleam_stdlib-d34d58088a2bf7d9ddaff914c61676f4595d842f.tar.gz gleam_stdlib-d34d58088a2bf7d9ddaff914c61676f4595d842f.zip |
fix code example output of io.println_error()
this fixes a small inconsistency on https://hexdocs.pm/gleam_stdlib/gleam/io.html#println_error
Diffstat (limited to 'src')
-rw-r--r-- | src/gleam/io.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam/io.gleam b/src/gleam/io.gleam index f2cbd43..734ae01 100644 --- a/src/gleam/io.gleam +++ b/src/gleam/io.gleam @@ -65,7 +65,7 @@ fn do_println(string string: String) -> Nil /// ```gleam /// io.println_error("Hi pop") /// // -> Nil -/// // Hi mum +/// // Hi pop /// ``` /// pub fn println_error(string: String) -> Nil { |