8000 Fix example in readme · Jake-Shadle/unicode-segmentation@10a41f4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 10a41f4

Browse files
authored
Fix example in readme
1 parent d02ab6e commit 10a41f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ fn main() {
2121

2222
let s = "The quick (\"brown\") fox";
2323
let w = s.split_word_bounds().collect::<Vec<&str>>();
24-
let b: &[_] = &["The", " ", "quick", " ", "(", "\"", "brown", "\"", ")", " ", " ", "fox"];
24+
let b: &[_] = &["The", " ", "quick", " ", "(", "\"", "brown", "\"", ")", " ", "fox"];
2525
assert_eq!(w, b);
2626
}
2727
```

0 commit comments

Comments
 (0)
0