From 78fb2e64991f572ca0fbaf7c07353865e9c43934 Mon Sep 17 00:00:00 2001 From: davidemazzocchi Date: Tue, 30 Sep 2025 16:28:48 +0200 Subject: [PATCH] chore: run cargo format --- 01.workspace/heave/src/str/value.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01.workspace/heave/src/str/value.rs b/01.workspace/heave/src/str/value.rs index e3e8049..c6a9071 100644 --- a/01.workspace/heave/src/str/value.rs +++ b/01.workspace/heave/src/str/value.rs @@ -12,7 +12,7 @@ pub enum E { impl std::fmt::Display for E { fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> { let string_value = match self { - Value::Bool(value) => match value{ + Value::Bool(value) => match value { true => 1.to_string(), false => 0.to_string(), },