@@ -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.
@@ -550,7 +550,7 @@ applies to the special word boundary assertions. (That is, `\b{start}`,
550
550
* `^` and `$` are **not** Unicode-aware in multi-line mode. Namely, they only
551
551
recognize `\n` (assuming CRLF mode is not enabled) and not any of the other
552
552
forms of line terminators defined by Unicode.
553
- * Case insensitive searching is Unicode-aware and uses simple case folding.
553
+ * case- insensitive searching is Unicode-aware and uses simple case folding.
554
554
* Unicode general categories, scripts and many boolean properties are available
555
555
by default via the `\p{property name}` syntax.
556
556
* In all cases, matches are reported using byte offsets. Or more precisely,
@@ -1240,7 +1240,7 @@ default are noted.
1240
1240
is not included here, but contains properties like `Alphabetic`, `Emoji`,
1241
1241
`Lowercase`, `Math`, `Uppercase` and `White_Space`.
1242
1242
* **unicode-case** -
1243
- Provide the data for case insensitive matching using
1243
+ Provide the data for case- insensitive matching using
1244
1244
[Unicode's "simple loose matches" specification](https://www.unicode.org/reports/tr18/#Simple_Loose_Matches).
1245
1245
* **unicode-gencat** -
1246
1246
Provide the data for
0 commit comments