Small language fix in string.md

This commit is contained in:
Andrea Ratto
2023-09-20 11:24:21 +02:00
committed by GitHub
parent 722b969100
commit e72791b9eb

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 ```rust,editable