aboutsummaryrefslogtreecommitdiff
path: root/man/man3/tomo-Text.split_any.3
diff options
context:
space:
mode:
Diffstat (limited to 'man/man3/tomo-Text.split_any.3')
-rw-r--r--man/man3/tomo-Text.split_any.35
1 files changed, 2 insertions, 3 deletions
diff --git a/man/man3/tomo-Text.split_any.3 b/man/man3/tomo-Text.split_any.3
index 7a57433f..6c77d8d6 100644
--- a/man/man3/tomo-Text.split_any.3
+++ b/man/man3/tomo-Text.split_any.3
@@ -2,7 +2,7 @@
.\" Copyright (c) 2025 Bruce Hill
.\" All rights reserved.
.\"
-.TH Text.split_any 3 2025-04-30 "Tomo man-pages"
+.TH Text.split_any 3 2025-09-21 "Tomo man-pages"
.SH NAME
Text.split_any \- split a text by multiple delimiters
.SH LIBRARY
@@ -34,6 +34,5 @@ To split based on an exact delimiter, use Text.split().
.SH EXAMPLES
.EX
->> "one, two,,three".split_any(", ")
-= ["one", "two", "three"]
+assert "one, two,,three".split_any(", ") == ["one", "two", "three"]
.EE