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 2ae654e..3b8c5e0 100644
--- a/src/gleam/string.gleam
+++ b/src/gleam/string.gleam
@@ -280,7 +280,7 @@ pub fn split_once(
/// Create a new string by joining two 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