aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gleam/string.gleam4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gleam/string.gleam b/src/gleam/string.gleam
index 7a7439c..ece64b4 100644
--- a/src/gleam/string.gleam
+++ b/src/gleam/string.gleam
@@ -779,7 +779,7 @@ if javascript {
/// Converts a `String` to a `List` of `UtfCodepoint`.
///
/// See <https://en.wikipedia.org/wiki/Code_point> and
-/// <https://en.wikipedia.org/wiki/Unicode#Codespace_and_CodePoints> for an
+/// <https://en.wikipedia.org/wiki/Unicode#Codespace_and_Code_Points> for an
/// explanation on code points.
///
/// ## Examples
@@ -833,7 +833,7 @@ if javascript {
/// Converts a `List` of `UtfCodepoint`s to a `String`.
///
/// See <https://en.wikipedia.org/wiki/Code_point> and
-/// <https://en.wikipedia.org/wiki/Unicode#Codespace_and_CodePoints> for an
+/// <https://en.wikipedia.org/wiki/Unicode#Codespace_and_Code_Points> for an
/// explanation on code points.
///
/// ## Examples