Add missing word boundary character

This commit is contained in:
2020-04-09 16:07:30 +02:00
parent a7dd4d2fe9
commit d0263dd1c4
+1
View File
@@ -27,6 +27,7 @@ fn is_character_word_boundary(c: char) -> bool
| '/' | '/'
| '%' | '%'
| '|' | '|'
| '#'
=> true, => true,
_ => false, _ => false,
} }