From 82d4b1d67edc47345075a4817ca7458f3e02ebca Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Sun, 13 Mar 2016 20:02:09 -0700 Subject: [PATCH] splitting: fix docs for string-lines. --- core/splitting/splitting-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/splitting/splitting-docs.factor b/core/splitting/splitting-docs.factor index 5edadbbdae..b0bc88b17b 100644 --- a/core/splitting/splitting-docs.factor +++ b/core/splitting/splitting-docs.factor @@ -96,7 +96,7 @@ HELP: string-lines { $values { "str" string } { "seq" "a sequence of strings" } } { $description "Splits a string along line breaks." } { $examples - { $example "USING: prettyprint splitting ;" "\"Hello\\r\\nworld\\n\" string-lines ." "{ \"Hello\" \"world\" \"\" }" } + { $example "USING: prettyprint splitting ;" "\"Hello\\r\\nworld\\n\" string-lines ." "{ \"Hello\" \"world\" }" } } ; HELP: replace