aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Rothuis <alex.rothuis@gmail.com>2022-10-28 02:13:14 +0200
committerLouis Pilfold <louis@lpil.uk>2022-10-31 21:34:23 +0000
commit2bff49f249e16714c2c0831aed68e9ec0b10e7e8 (patch)
tree94e4cdf4cd32dc9894e914e3db7dea1319c333db
parentd6dd21f173fac9919e818db7761a29ed99f17d5d (diff)
downloadgleam_stdlib-2bff49f249e16714c2c0831aed68e9ec0b10e7e8.tar.gz
gleam_stdlib-2bff49f249e16714c2c0831aed68e9ec0b10e7e8.zip
API docs: correct link to string_builder
-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 97a0c59..312b81d 100644
--- a/src/gleam/string.gleam
+++ b/src/gleam/string.gleam
@@ -463,7 +463,7 @@ if javascript {
/// Creates a new `String` by joining two `String`s together.
///
/// This function copies both `String`s and runs in linear time. If you find
-/// yourself joining `String`s frequently consider using the [`string_builder`](../string_builder)
+/// yourself joining `String`s frequently consider using the [`string_builder`](../gleam/string_builder.html)
/// module as it can append `String`s much faster!
///
/// ## Examples
@@ -483,7 +483,7 @@ pub fn append(to first: String, suffix second: String) -> String {
/// Creates a new `String` by joining many `String`s together.
///
/// This function copies both `String`s and runs in linear time. If you find
-/// yourself joining `String`s frequently consider using the [`string_builder`](../string_builder)
+/// yourself joining `String`s frequently consider using the [`string_builder`](../gleam/string_builder.html)
/// module as it can append `String`s much faster!
///
/// ## Examples