Merge pull request #581 from tanliwei/patch-1

fix a typo
pull/584/head
KaiserY 3 years ago committed by GitHub
commit f5a85c1355
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -41,7 +41,7 @@ let s = "initial contents".to_string();
这些代码会创建包含 `initial contents` 的字符串。
也可以使用 `String::from` 函数来从字符串字面值创建 `String`。示例 8-13 中的代码代码等同于使用 `to_string`
也可以使用 `String::from` 函数来从字符串字面值创建 `String`。示例 8-13 中的代码等同于使用 `to_string`
```rust
let s = String::from("initial contents");

Loading…
Cancel
Save