aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gleam/string.gleam2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam/string.gleam b/src/gleam/string.gleam
index 941cd0c..54bced3 100644
--- a/src/gleam/string.gleam
+++ b/src/gleam/string.gleam
@@ -296,7 +296,7 @@ pub fn append(to first: String, suffix second: String) -> String {
/// Create a new string by joining many strings together.
///
/// This function copies both strings and runs in linear time. If you find
-/// yourself joining strings frequently consider using the [string_builder](../iodata)
+/// yourself joining strings frequently consider using the [string_builder](../string_builder)
/// module as it can append strings much faster!
///
/// ## Examples