|
2 | 2 | ================== |
3 | 3 | This release marks the end of a [years long rewrite of the regex crate |
4 | 4 | internals](https://github.com/rust-lang/regex/issues/656). Since this is |
5 | | -such a big release, please report any issues or regressions you find. I would |
| 5 | +such a big release, please report any issues or regressions you find. We would |
6 | 6 | also love to hear about improvements as well. |
7 | 7 |
|
8 | 8 | In addition to many internal improvements that should hopefully result in |
9 | 9 | "my regex searches are faster," there have also been a few API additions: |
10 | 10 |
|
11 | | -* A new `Captures::extract` method exists for quickly accessing the substrings |
| 11 | +* A new `Captures::extract` method for quickly accessing the substrings |
12 | 12 | that match each capture group in a regex. |
13 | 13 | * A new inline flag, `R`, which enables CRLF mode. This makes `.` match any |
14 | 14 | Unicode scalar value except for `\r` and `\n`, and also makes `(?m:^)` and |
@@ -37,7 +37,7 @@ Multi-pattern searches with offsets can be done with `regex-automata 0.3`. |
37 | 37 | * [FEATURE #675](https://github.com/rust-lang/regex/issues/675): |
38 | 38 | Anchored search APIs are now available in `regex-automata 0.3`. |
39 | 39 | * [FEATURE #824](https://github.com/rust-lang/regex/issues/824): |
40 | | -Add new `Capptures::extract` method for easier capture group access. |
| 40 | +Add new `Captures::extract` method for easier capture group access. |
41 | 41 | * [FEATURE #961](https://github.com/rust-lang/regex/issues/961): |
42 | 42 | Add `regex-lite` crate with smaller binary sizes and faster compile times. |
43 | 43 |
|
|
0 commit comments