From d0263dd1c4d95d80c7c0083e262196e9c8d85565 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Fri, 27 Mar 2020 04:40:54 +0100 Subject: [PATCH] Add missing word boundary character --- src/parse/helpers.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/parse/helpers.rs b/src/parse/helpers.rs index 26047f4..4999d7e 100644 --- a/src/parse/helpers.rs +++ b/src/parse/helpers.rs @@ -27,6 +27,7 @@ fn is_character_word_boundary(c: char) -> bool | '/' | '%' | '|' + | '#' => true, _ => false, }