Skip to content

Commit

Permalink
fix missing , syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
Rudxain authored May 19, 2024
1 parent f73646e commit 163ab9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rustico/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ fn replace_ident(ident: Ident) -> Option<TokenTree> {
"usando" | "usar" => "use",
"dentro_de" => "into",
"enumerado" | "enumeración" => "enum",
"Rasgo" => "Trait"
"Rasgo" => "Trait",
_ => &ident_str,
};

Expand Down

0 comments on commit 163ab9f

Please sign in to comment.