Skip to content

Commit deebd8a

Browse files
committed
Fix little typo
1 parent 92767fd commit deebd8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/grapheme.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ impl GraphemeCursor {
335335
/// # use unicode_segmentation::{GraphemeCursor, GraphemeIncomplete};
336336
/// let flags = "\u{1F1F7}\u{1F1F8}\u{1F1EE}\u{1F1F4}";
337337
/// let mut cursor = GraphemeCursor::new(8, flags.len(), false);
338-
/// // Note enough pre-context to decide if there's a boundary between the two flags.
338+
/// // Not enough pre-context to decide if there's a boundary between the two flags.
339339
/// assert_eq!(cursor.is_boundary(&flags[8..], 8), Err(GraphemeIncomplete::PreContext(8)));
340340
/// // Provide one more Regional Indicator Symbol of pre-context
341341
/// cursor.provide_context(&flags[4..8], 4);

0 commit comments

Comments
 (0)