diff --git a/src/ch08-02-strings.md b/src/ch08-02-strings.md index f847e21..2973747 100644 --- a/src/ch08-02-strings.md +++ b/src/ch08-02-strings.md @@ -142,7 +142,7 @@ let s3 = String::from("toe"); let s = s1 + "-" + &s2 + "-" + &s3; ``` -这时 `s` 的内容会是 `tic-tac-toe`。在有这么多 `+` 和 `"` 字符的情况下,很难理解具体发生了什么。对于更为复杂的字符串链接,可以使用 `format!` 宏: +这时 `s` 的内容会是 `tic-tac-toe`。在有这么多 `+` 和 `"` 字符的情况下,很难理解具体发生了什么。对于更为复杂的字符串连接,可以使用 `format!` 宏: ```rust let s1 = String::from("tic");