From e72791b9eb3349432d5a4c8abf0f86295e2f71af Mon Sep 17 00:00:00 2001 From: Andrea Ratto Date: Wed, 20 Sep 2023 11:24:21 +0200 Subject: [PATCH] Small language fix in string.md --- en/src/compound-types/string.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/src/compound-types/string.md b/en/src/compound-types/string.md index 2d02825..6760b6a 100644 --- a/en/src/compound-types/string.md +++ b/en/src/compound-types/string.md @@ -16,7 +16,7 @@ fn main() { ``` -2. 🌟🌟 We can only use `str` by boxed it, `&` can be used to convert `Box` to `&str` +2. 🌟🌟 We can only use `str` by boxing it, `&` can be used to convert `Box` to `&str` ```rust,editable