From 479d008e7d7c0d7f9a72f2457d341445c9aa73a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile?= Date: Mon, 2 Feb 2026 20:19:07 +0100 Subject: [PATCH 1/2] =?UTF-8?q?Unicode=20character=20'=C2=A0'=20(No-Break?= =?UTF-8?q?=20Space)=20looks=20like=20'=20'=20(Space),=20but=20it=20is=20n?= =?UTF-8?q?ot?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- roesti_proc_macro/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roesti_proc_macro/src/lib.rs b/roesti_proc_macro/src/lib.rs index e9d6438..15c414b 100644 --- a/roesti_proc_macro/src/lib.rs +++ b/roesti_proc_macro/src/lib.rs @@ -15,7 +15,7 @@ fn replace_ident(ident: Ident) -> Option { "Nüt" => "None", "Resultat" | "Summa_Summarum" => "Result", "Selber" => "Self", - "usdrucke" | "säg" => "println", + "usdrucke" | "säg" => "println", "ahalte" | "item" | "momentli" => "break", "asynchron" | "chum_i_hüt_nöd_chumi_morn" => "async", "druf-warte" => "await", From 1824fde8aeb9b4bfe6038a54c8c6f6fa71683cad Mon Sep 17 00:00:00 2001 From: bwbl Date: Mon, 2 Feb 2026 20:21:53 +0100 Subject: [PATCH 2/2] fix unicode error --- roesti_proc_macro/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roesti_proc_macro/src/lib.rs b/roesti_proc_macro/src/lib.rs index 15c414b..1aef88f 100644 --- a/roesti_proc_macro/src/lib.rs +++ b/roesti_proc_macro/src/lib.rs @@ -29,7 +29,7 @@ fn replace_ident(ident: Ident) -> Option { "unsicher" | "gföhrli" => "unsafe", "in" => "in", "vo" => "from", - "dynamisch" | "juflig" => "dyn", + "dynamisch" | "juflig" => "dyn", "uspacke" => "unwrap", "standard" | "nullacht_füfzä" => "default", "als_referenz" => "as_ref",