diff options
Diffstat (limited to 'helix-core/src/state.rs')
-rw-r--r-- | helix-core/src/state.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-core/src/state.rs b/helix-core/src/state.rs index 55ca0673..d2ebca47 100644 --- a/helix-core/src/state.rs +++ b/helix-core/src/state.rs @@ -274,13 +274,13 @@ fn is_word(ch: char) -> bool { #[derive(Debug, Eq, PartialEq)] enum Category { Whitespace, - EOL, + Eol, Word, Punctuation, } fn categorize(ch: char) -> Category { if ch == '\n' { - Category::EOL + Category::Eol } else if ch.is_ascii_whitespace() { Category::Whitespace } else if ch.is_ascii_punctuation() { |