Merge pull request #133 from jonathandturner/add_at

Add at
This commit is contained in:
Jonathan Turner 2019-06-26 19:16:11 +12:00 committed by GitHub
commit 872be8a731
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -518,6 +518,7 @@ fn is_start_bare_char(c: char) -> bool {
'/' => true,
'_' => true,
'-' => true,
'@' => true,
_ => false,
}
}
@ -531,6 +532,7 @@ fn is_bare_char(c: char) -> bool {
'/' => true,
'_' => true,
'-' => true,
'@' => true,
_ => false,
}
}