From 9471bf50f94706013406788c9849bf0e780f6fc2 Mon Sep 17 00:00:00 2001 From: Jhonatan Mustiola <152746443+hiahir357@users.noreply.github.com> Date: Thu, 27 Jun 2024 05:04:51 -0400 Subject: [PATCH] Update 107-string.md (#5951) More links were added to the Vector step in the Rust roadmap --------- Co-authored-by: dsh --- .../101-language-basics/103-data-structures/107-string.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/107-string.md b/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/107-string.md index 187290a20..ed7a54936 100644 --- a/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/107-string.md +++ b/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/107-string.md @@ -4,4 +4,8 @@ In Rust, `String` is a growable, mutable, owned, UTF-8 encoded string type. When Learn more from the following links: -- [@article@What Is a String?](https://doc.rust-lang.org/book/ch08-02-strings.html?highlight=String#what-is-a-string) \ No newline at end of file +- [@official@String in std::string - Rust](https://doc.rust-lang.org/std/string/struct.String.html) +- [@official@str - Rust](https://doc.rust-lang.org/std/primitive.str.html) +- [@official@What Is a String?](https://doc.rust-lang.org/book/ch08-02-strings.html?highlight=String#what-is-a-string) +- [@article@Rust String (With Examples)](https://www.programiz.com/rust/string) +- [@video@All Rust string types explained](https://www.youtube.com/watch?v=CpvzeyzgQdw&pp=ygUOc3RyaW5nIGluIHJ1c3Q%3D)