From dd38ca079626abe5f33f217a497befbd8a9fc019 Mon Sep 17 00:00:00 2001 From: zhaoyao73 Date: Sun, 28 Aug 2022 17:20:46 -0400 Subject: [PATCH] fix a typo in formatted-output.md fix the output --- src/basic/formatted-output.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic/formatted-output.md b/src/basic/formatted-output.md index ce4d17a6..3e20112c 100644 --- a/src/basic/formatted-output.md +++ b/src/basic/formatted-output.md @@ -41,7 +41,7 @@ fn main() { 其中,`s1` 是通过 `format!` 生成的 `String` 字符串,最终输出如下: ```console -hello, wolrd +hello, world hello, world! ```