Add missing word boundary character

This commit is contained in:
2020-03-27 04:40:54 +01:00
parent a7dd4d2fe9
commit d0263dd1c4

View File

@@ -27,6 +27,7 @@ fn is_character_word_boundary(c: char) -> bool
| '/'
| '%'
| '|'
| '#'
=> true,
_ => false,
}