Skip to content

Commit

Permalink
Update main.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
KajizukaTaichi committed Jan 9, 2025
1 parent e0010d6 commit e2ddf1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ impl Expr {
} else if token.starts_with("\"") && token.ends_with("\"") {
let text = trim!(token, "\"", "\"");
Expr::Value(Type::Text(text_escape(text)))
// Text formating
// Text formatting
} else if token.starts_with("f\"") && token.ends_with('"') {
let text = trim!(token, "f\"", "\"");
let text = text_format(text)?;
Expand Down

0 comments on commit e2ddf1d

Please sign in to comment.