diff options
author | Fabian <fabian@fmbb.se> | 2023-03-04 12:59:20 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2023-03-04 20:35:02 +0000 |
commit | 1e3f3bdb54731bf37efbb05bc3c773e144ef590b (patch) | |
tree | 1d2976534075f2562c3693c33872ad44cd907afe | |
parent | 675ea90d3d5bab9769a6b7c48cf3a2ecf75f2ca0 (diff) | |
download | gleam_stdlib-1e3f3bdb54731bf37efbb05bc3c773e144ef590b.tar.gz gleam_stdlib-1e3f3bdb54731bf37efbb05bc3c773e144ef590b.zip |
Fix to_base36 docs to not say it's base16
-rw-r--r-- | src/gleam/int.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam/int.gleam b/src/gleam/int.gleam index 2ef4b73..1f7ab79 100644 --- a/src/gleam/int.gleam +++ b/src/gleam/int.gleam @@ -261,7 +261,7 @@ pub fn to_base16(x: Int) -> String { do_to_base_string(x, 16) } -/// Prints a given int to a string using base16. +/// Prints a given int to a string using base36. /// /// ## Examples /// |