From dc09c6a057a6f7f1ee283912011d15f76f6fe8d1 Mon Sep 17 00:00:00 2001 From: jumbledFox <81022536+jumbledFox@users.noreply.github.com> Date: Sat, 6 Jan 2024 11:50:50 +0000 Subject: [PATCH] Fix minor formatting mistake (#852) --- src/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macros.rs b/src/macros.rs index a5ce8a8a..9261c423 100644 --- a/src/macros.rs +++ b/src/macros.rs @@ -88,7 +88,7 @@ macro_rules! queue { /// execute!(stdout(), Print("sum:\n".to_string())); /// /// // will be executed directly -/// execute!(stdout(), Print("1 + 1= ".to_string()), Print((1+1).to_string())); +/// execute!(stdout(), Print("1 + 1 = ".to_string()), Print((1+1).to_string())); /// /// // ==== Output ==== /// // sum: