Skip to content

Commit

Permalink
fix bad naming
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuoguo committed Jun 2, 2024
1 parent fd79195 commit cf655f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/print_visitor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ impl WhammVisitor<String> for AsStrVisitor {
Value::Tuple {ty: _ty, vals} => {
let mut s = "".to_string();
s += &format!("(");
s += &vals.iter().map(|arg| self.visit_expr(arg)).collect::<Vec<String>>().join(", ");
s += &vals.iter().map(|v| self.visit_expr(v)).collect::<Vec<String>>().join(", ");
s += &format!(")");
s
}
Expand Down

0 comments on commit cf655f8

Please sign in to comment.