From 47d810e0593fe6abb9a85b0cebccb2e9649b457a Mon Sep 17 00:00:00 2001 From: Anton-4 <17049058+Anton-4@users.noreply.github.com> Date: Sat, 16 Nov 2024 19:30:47 +0100 Subject: [PATCH] fix example Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com> --- crates/compiler/builtins/roc/List.roc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/compiler/builtins/roc/List.roc b/crates/compiler/builtins/roc/List.roc index f8fb3bdc03..6a6c96925d 100644 --- a/crates/compiler/builtins/roc/List.roc +++ b/crates/compiler/builtins/roc/List.roc @@ -1263,7 +1263,7 @@ splitAt = \elements, userSplitIndex -> ## Splits the input list on the delimiter element. ## ## ```roc -## List.splitOn [1, 2, 3] 2 == [[1], [2]] +## List.splitOn [1, 2, 3] 2 == [[1], [3]] ## ``` splitOn : List a, a -> List (List a) where a implements Eq splitOn = \elements, delimiter ->