Skip to content

Commit

Permalink
Fix keyword handling
Browse files Browse the repository at this point in the history
  • Loading branch information
AntunTu committed Sep 24, 2024
1 parent d1c6d4b commit e85d384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nameutil.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ pub fn escape_digit(name: &str) -> String {
if name.starts_with(char::is_numeric) {
format!("_{name}")
} else {
name.into()
mangle_keywords(name).into()
}
}

Expand Down

0 comments on commit e85d384

Please sign in to comment.