aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Łępicki <michallepicki@users.noreply.github.com>2020-10-28 21:24:50 +0100
committerLouis Pilfold <louis@lpil.uk>2020-10-29 10:41:52 +0100
commit6b2b12760686566bf4ca88008f06194788d32eb1 (patch)
tree0af0330d2c9e636d979c91e55f8172adac0819b2
parentcbdd74a5e78a85be8d4d49a93b87e501e5b0aef5 (diff)
downloadgleam_stdlib-6b2b12760686566bf4ca88008f06194788d32eb1.tar.gz
gleam_stdlib-6b2b12760686566bf4ca88008f06194788d32eb1.zip
Update string.gleam
-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