diff options
author | Quinn Wilton <quinn@quinnwilton.com> | 2020-08-15 00:13:19 -0700 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2020-08-15 17:12:27 +0100 |
commit | d313a037cc839d34aeeb6dcd87b35199ee8b3c67 (patch) | |
tree | 7d659970594c89fcec7235ca48a926d5a95ffc0c | |
parent | d096ad2d0e015fded865676c371958157a5498db (diff) | |
download | gleam_stdlib-d313a037cc839d34aeeb6dcd87b35199ee8b3c67.tar.gz gleam_stdlib-d313a037cc839d34aeeb6dcd87b35199ee8b3c67.zip |
Fix reference to string_builder
-rw-r--r-- | src/gleam/string.gleam | 2 |
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 |