Merge pull request #458 from neg3ntropy/patch-1

Small language fix in string.md
This commit is contained in:
Sunface
2023-10-09 09:22:08 +08:00
committed by GitHub

View File

@ -16,7 +16,7 @@ fn main() {
```
2. 🌟🌟 We can only use `str` by boxed it, `&` can be used to convert `Box<str>` to `&str`
2. 🌟🌟 We can only use `str` by boxing it, `&` can be used to convert `Box<str>` to `&str`
```rust,editable