From e2ddf1d4766b8226f8bdfd21a39df88ccb856535 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=B6=E5=A1=9A=E5=A4=AA=E6=99=BA?= Date: Thu, 9 Jan 2025 23:47:30 +0900 Subject: [PATCH] Update main.rs --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 00151e9..40db2d2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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)?;