Skip to content

Commit

Permalink
tweak a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
nico committed Aug 5, 2024
1 parent 77f83c7 commit b0e25ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demumble.cc
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ static bool is_mangle_char_itanium(char c) {
}

static bool is_mangle_char_rust(char c) {
// See https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html.
// https://rust-lang.github.io/rfcs/2603-rust-symbol-name-mangling-v0.html.
return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
(c >= '0' && c <= '9') || c == '_';
}
Expand Down

0 comments on commit b0e25ed

Please sign in to comment.