From 8398d28e7bcc7e36bcd8144c74f0e5b7d7e3fcdd Mon Sep 17 00:00:00 2001 From: RyuuSleek <74394241+RyuuSleek@users.noreply.github.com> Date: Mon, 14 Nov 2022 04:20:19 +0000 Subject: [PATCH] Fix: typo --- 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 4a1d135..993bd39 100644 --- a/en/src/compound-types/string.md +++ b/en/src/compound-types/string.md @@ -95,7 +95,7 @@ fn main() { ``` ### &str and String -Opsite to the seldom using of `str`, `&str` and `String` are used everywhere! +Opposite to the seldom using of `str`, `&str` and `String` are used everywhere! 7. 🌟🌟 `&str` can be converted to `String` in two ways ```rust,editable