Skip to content

Commit dabfeb0

Browse files
authored
Fix minor typos in docs
1 parent 28e16fa commit dabfeb0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ as follows:
4242
4343
* [`Regex::new`] compiles a regex using the default configuration. A
4444
[`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.)
4646
* [`Regex::is_match`] reports whether a match exists in a particular haystack.
4747
* [`Regex::find`] reports the byte offsets of a match in a haystack, if one
4848
exists. [`Regex::find_iter`] returns an iterator over all such matches.
@@ -109,7 +109,7 @@ fn main() {
109109
}
110110
```
111111
112-
Foruth, run it with `cargo run`:
112+
Fourth, run it with `cargo run`:
113113
114114
```text
115115
$ cargo run
@@ -548,7 +548,7 @@ get ASCII-only word boundaries, use `(?-u:\b)` and `(?-u:\B)`.
548548
* `^` and `$` are **not** Unicode-aware in multi-line mode. Namely, they only
549549
recognize `\n` (assuming CRLF mode is not enabled) and not any of the other
550550
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.
552552
* Unicode general categories, scripts and many boolean properties are available
553553
by default via the `\p{property name}` syntax.
554554
* In all cases, matches are reported using byte offsets. Or more precisely,
@@ -1230,7 +1230,7 @@ default are noted.
12301230
is not included here, but contains properties like `Alphabetic`, `Emoji`,
12311231
`Lowercase`, `Math`, `Uppercase` and `White_Space`.
12321232
* **unicode-case** -
1233-
Provide the data for case insensitive matching using
1233+
Provide the data for case-insensitive matching using
12341234
[Unicode's "simple loose matches" specification](https://www.unicode.org/reports/tr18/#Simple_Loose_Matches).
12351235
* **unicode-gencat** -
12361236
Provide the data for

0 commit comments

Comments
 (0)