Add missing word boundary character

This commit is contained in:
Patrick Lühne 2020-03-27 04:40:54 +01:00
parent a7dd4d2fe9
commit d0263dd1c4
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 1 additions and 0 deletions

View File

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