Both the [front page](https://crates.io/crates/unicode-segmentation) and [`unicode_segmentation::UnicodeSegmentation`'s example](https://unicode-rs.github.io/unicode-segmentation/unicode_segmentation/trait.UnicodeSegmentation.html#tymethod.graphemes) shows ```rust let gr1 = UnicodeSegmentation::graphemes("a\u{310}e\u{301}o\u{308}\u{332}", true) .collect::<Vec<&str>>(); ``` than the more elegant ```rust let gr1 = "a\u{310}e\u{301}o\u{308}\u{332}".graphemes(true).collect::<Vec<&str>>(); ```