Fix minor formatting mistake (#852)

This commit is contained in:
jumbledFox 2024-01-06 11:50:50 +00:00 committed by GitHub
parent 08762b3ef4
commit dc09c6a057
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -88,7 +88,7 @@ macro_rules! queue {
/// execute!(stdout(), Print("sum:\n".to_string())); /// execute!(stdout(), Print("sum:\n".to_string()));
/// ///
/// // will be executed directly /// // 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 ==== /// // ==== Output ====
/// // sum: /// // sum: