1
Fork 0

Little fixes

This commit is contained in:
Deep Majumder 2022-12-16 18:41:08 +05:30
parent c4d0c91161
commit 4af9e6a1c2
3 changed files with 5 additions and 5 deletions

View file

@ -379,7 +379,7 @@ impl Token {
}
}
pub fn is_range_seperator(&self) -> bool {
pub fn is_range_separator(&self) -> bool {
[DotDot, DotDotDot, DotDotEq].contains(&self.kind)
}