From 2bff49f249e16714c2c0831aed68e9ec0b10e7e8 Mon Sep 17 00:00:00 2001 From: Alex Rothuis Date: Fri, 28 Oct 2022 02:13:14 +0200 Subject: API docs: correct link to string_builder --- src/gleam/string.gleam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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 -- cgit v1.2.3