Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typos in docs #5

Merged
merged 1 commit into from
Feb 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading