@@ -42,7 +42,7 @@ as follows:
42
42
43
43
* [`Regex::new`] compiles a regex using the default configuration. A
44
44
[`RegexBuilder`] permits setting a non-default configuration. (For example,
45
- case insensitive matching, verbose mode and others.)
45
+ case- insensitive matching, verbose mode and others.)
46
46
* [`Regex::is_match`] reports whether a match exists in a particular haystack.
47
47
* [`Regex::find`] reports the byte offsets of a match in a haystack, if one
48
48
exists. [`Regex::find_iter`] returns an iterator over all such matches.
@@ -109,7 +109,7 @@ fn main() {
109
109
}
110
110
```
111
111
112
- Foruth , run it with `cargo run`:
112
+ Fourth , run it with `cargo run`:
113
113
114
114
```text
115
115
$ cargo run
@@ -548,7 +548,7 @@ get ASCII-only word boundaries, use `(?-u:\b)` and `(?-u:\B)`.
548
548
* `^` and `$` are **not** Unicode-aware in multi-line mode. Namely, they only
549
549
recognize `\n` (assuming CRLF mode is not enabled) and not any of the other
550
550
forms of line terminators defined by Unicode.
551
- * Case insensitive searching is Unicode-aware and uses simple case folding.
551
+ * case- insensitive searching is Unicode-aware and uses simple case folding.
552
552
* Unicode general categories, scripts and many boolean properties are available
553
553
by default via the `\p{property name}` syntax.
554
554
* In all cases, matches are reported using byte offsets. Or more precisely,
@@ -1230,7 +1230,7 @@ default are noted.
1230
1230
is not included here, but contains properties like `Alphabetic`, `Emoji`,
1231
1231
`Lowercase`, `Math`, `Uppercase` and `White_Space`.
1232
1232
* **unicode-case** -
1233
- Provide the data for case insensitive matching using
1233
+ Provide the data for case- insensitive matching using
1234
1234
[Unicode's "simple loose matches" specification](https://www.unicode.org/reports/tr18/#Simple_Loose_Matches).
1235
1235
* **unicode-gencat** -
1236
1236
Provide the data for
0 commit comments