Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ValeryAntopol committed Feb 21, 2024
1 parent 3d6f707 commit d526250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/air-lib/air-parser/src/parser/lexer/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub(super) fn is_air_alphanumeric(ch: char) -> bool {
ch.is_alphanumeric() || ch == '_' || ch == '-'
}

pub(super) fn is_lambda_allowed_char(ch: char) -> bool {
pub(super) fn is_lens_allowed_char(ch: char) -> bool {
// good old switch faster here than hash set
match ch {
'$' => true,
Expand Down

0 comments on commit d526250

Please sign in to comment.