From 94ffc36442e218e54038e67e54c3223758193f09 Mon Sep 17 00:00:00 2001 From: rvcas Date: Mon, 20 Feb 2023 15:17:25 -0500 Subject: [PATCH] chore: cargo fmt fix --- crates/aiken-lang/src/tipo/error.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/aiken-lang/src/tipo/error.rs b/crates/aiken-lang/src/tipo/error.rs index f2f3304e..f39328ac 100644 --- a/crates/aiken-lang/src/tipo/error.rs +++ b/crates/aiken-lang/src/tipo/error.rs @@ -785,7 +785,7 @@ The best thing to do from here is to remove it."#))] if missing > 1 { arguments.push('s'); } - + format!("please add the {} missing {arguments}", missing.to_string().yellow()) } else { let extra = count - 3; @@ -795,7 +795,7 @@ The best thing to do from here is to remove it."#))] if extra > 1 { arguments.push('s'); } - + format!("please remove the {} extra {arguments}", extra.to_string().yellow()) } ))]