Skip to content

Commit

Permalink
Update ch08-02-strings.md (#161)
Browse files Browse the repository at this point in the history
链接 -> 连接
  • Loading branch information
michael88888888 committed Jun 16, 2024
1 parent e617db7 commit d027cbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ch08-02-strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit d027cbb

Please sign in to comment.