diff --git a/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/103-character.md b/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/103-character.md index 2c3c15484..10ec74794 100644 --- a/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/103-character.md +++ b/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/103-character.md @@ -4,7 +4,7 @@ In Rust, the `char` keyword is used to denote a character type. A `char` in Rust Learn more from the following links: -- [@offcial@The char Primitive Type](https://doc.rust-lang.org/std/primitive.char.html) +- [@official@The char Primitive Type](https://doc.rust-lang.org/std/primitive.char.html) - [@article@The Character Type](https://rust-book.cs.brown.edu/ch03-02-data-types.html#the-character-type) - [@article@Unicode Glossary - Unicode Scalar Value](https://www.unicode.org/glossary/#unicode_scalar_value) - [@video@Char Type in Rust](https://www.youtube.com/watch?v=NZaEinuVPVg&pp=ygURY2hhciB0eXBlIGluIHJ1c3Q%3D) diff --git a/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/106-vector.md b/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/106-vector.md index 671eb74cc..c1ce612a4 100644 --- a/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/106-vector.md +++ b/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/106-vector.md @@ -4,4 +4,8 @@ A `Vector` in Rust, often referred to as `Vec`, is a growable, or dynamically-si Learn more from the following links: -- [@article@Storing Lists of Values with Vectors](https://doc.rust-lang.org/book/ch08-01-vectors.html?highlight=vector#storing-lists-of-values-with-vectors) \ No newline at end of file +- [@official@Vec in std::vec - Rust](https://doc.rust-lang.org/std/vec/struct.Vec.html) +- [@article@Storing Lists of Values with Vectors](https://doc.rust-lang.org/book/ch08-01-vectors.html?highlight=vector#storing-lists-of-values-with-vectors) +- [@article@Rust Vector (With Examples)](https://www.programiz.com/rust/vector) +- [@video@Rust: Vectors](https://www.youtube.com/watch?v=nOKOFYzvvHo&t=97s&pp=ygUMcnVzdCB2ZWN0b3Jz) +- [@video@Common Collections in Rust](https://www.youtube.com/watch?v=Zs-pS-egQSs&t=39s&pp=ygUMcnVzdCB2ZWN0b3Jz)