Skip to content

Commit 37f0b75

Browse files
authored
Clarify CRLF mode effect
1 parent d7f9347 commit 37f0b75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ assert_eq!((m.start(), m.end()), (5, 5));
833833
```
834834
835835
When both CRLF mode and multi-line mode are enabled, then `^` and `$` will
836-
match either `\r` and `\n`, but never in the middle of a `\r\n`:
836+
match either `\r` or `\n`, but never in the middle of a `\r\n`:
837837
838838
```
839839
use regex::Regex;

0 commit comments

Comments
 (0)