Skip to content

Commit

Permalink
Fixed 'str/split' doc example
Browse files Browse the repository at this point in the history
  • Loading branch information
jlangch committed Aug 12, 2023
1 parent 6357c72 commit 0adc60d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ All notable changes to this project will be documented in this file.

- documentation and examples for lazy sequences

### Fixed

- Fixed 'str/split' doc examples



## [1.10.39] - 2023-07-10
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -982,7 +982,7 @@ public VncVal apply(final VncList args) {
.examples(
"(str/split \"abc,def,ghi\" \",\")",
"(str/split \"James Peter Robert\" \" \" 2)",
"(str/split \"abc , def , ghi\" \"[ *],[ *]\")",
"(str/split \"abc , def , ghi\" \" *, *\")",
"(str/split \"abc,def,ghi\" \"((?<=,)|(?=,))\")",
"(str/split \"q1w2e3r4t5y6u7i8o9p0\" #\"\\d+\")",
"(str/split \"q1w2e3r4t5y6u7i8o9p0\" #\"\\d+\" 5)",
Expand Down

0 comments on commit 0adc60d

Please sign in to comment.