From 789586f545054f80a9b8d2351c397fd680e5598c Mon Sep 17 00:00:00 2001 From: Anton-4 <17049058+Anton-4@users.noreply.github.com> Date: Sat, 15 Oct 2022 09:17:08 +0200 Subject: [PATCH] add link with explanation of grapheme Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com> --- crates/compiler/builtins/roc/Str.roc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/compiler/builtins/roc/Str.roc b/crates/compiler/builtins/roc/Str.roc index 64bee1f84b..4752d10bf4 100644 --- a/crates/compiler/builtins/roc/Str.roc +++ b/crates/compiler/builtins/roc/Str.roc @@ -161,7 +161,7 @@ joinWith : List Str, Str -> Str ## Split a [Str] around a separator. Passing `""` for the separator is not ## useful; it returns the original string wrapped in a list. To split a string -## into its individual graphemes, use `Str.graphemes` +## into its individual [graphemes](https://stackoverflow.com/a/27331885/4200103), use `Str.graphemes` ## ## expect Str.split "1,2,3" "," == ["1","2","3"] ## expect Str.split "1,2,3" "" == ["1,2,3"]