Comment fix

This commit is contained in:
RumovZ 2020-11-27 22:12:36 +01:00
parent 0c9ad7e952
commit 540d52c471

View file

@ -477,7 +477,7 @@ fn is_invalid_escape(txt: &str) -> bool {
RE.is_match(txt)
}
/// Check string for escape sequences handled by the parser: ":()
/// Check string for escape sequences handled by the parser: ":()-
fn is_parser_escape(txt: &str) -> bool {
// odd number of \s followed by a char with special meaning to the parser
lazy_static! {