From 194989b3a3bab7080821b97b5318254fc33ff26d Mon Sep 17 00:00:00 2001 From: lifegpc Date: Mon, 11 Jul 2022 04:43:32 +0000 Subject: [PATCH] Fix typo --- proc_macros/proc_macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proc_macros/proc_macros.rs b/proc_macros/proc_macros.rs index 5b20bd8..6abbfd5 100644 --- a/proc_macros/proc_macros.rs +++ b/proc_macros/proc_macros.rs @@ -597,7 +597,7 @@ fn get_check_json_keys_streams( for (key, sobj) in obj.entries() { match key { #(#streams2)* - _ => { Err(format!("{} {}", gettext("Key is handled:").replace("", key).as_str(), obj))?; } + _ => { Err(format!("{} {}", gettext("Key is not handled:").replace("", key).as_str(), obj))?; } } } }))