Skip to content

Commit

Permalink
Merge pull request #5 from bishabosha/bishabosha-patch-1
Browse files Browse the repository at this point in the history
fix typos in docs
  • Loading branch information
bishabosha authored Feb 10, 2024
2 parents f9d7e72 + de87945 commit ee50db3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ e.g. `$foo%g`, which extracts `val foo: Double`.

### Split Pattern

e.g. `$foo...(<regex>)`, which extracts `val foo: List[String]`.
e.g. `$foo...(<regex>)`, which extracts `val foo: IndexedSeq[String]`.

This is equivalent to extracting with `$foo` and then performing`foo.split(raw"<regex>").toIndexedSeq`.

Expand All @@ -76,7 +76,7 @@ String escape characters are also not processed within the regex.
There is also a special case where if the first element of the sequence is expected to be empty you can drop it with the `$foo..!(<regex>)` pattern.


Putting this all together, you could split Windows style strings with the following pattern:
Putting this all together, you could split Windows style paths with the following pattern:

```scala sc:nocompile
raw"C:\foo\bar\baz.pdf" match
Expand Down

0 comments on commit ee50db3

Please sign in to comment.