aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinoas <mail@inoas.com>2022-11-29 07:27:20 +0100
committerLouis Pilfold <louis@lpil.uk>2022-12-22 20:44:33 +0000
commit04b84338c488c38a6d180149277f9ca943a38415 (patch)
treef97807b6a9c0cb36fdf9bd43a93c316029ed133c
parentd9b67f73819dd3476edddde6d3dc97748c77a242 (diff)
downloadgleam_stdlib-04b84338c488c38a6d180149277f9ca943a38415.tar.gz
gleam_stdlib-04b84338c488c38a6d180149277f9ca943a38415.zip
fix link
-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