Fix link labels (#6122)

* Fix link labels

* Update src/data/roadmaps/rust/content/101-language-basics/103-data-structures/113-queue.md

---------

Co-authored-by: dsh <daniel.s.holdsworth@gmail.com>
fix/todo
Jhonatan Mustiola 5 months ago committed by GitHub
parent b48f81d98d
commit 680b2241e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/data/roadmaps/rust/content/101-language-basics/103-data-structures/110-linked-list.md
  2. 2
      src/data/roadmaps/rust/content/101-language-basics/103-data-structures/111-binary-heap.md
  3. 2
      src/data/roadmaps/rust/content/101-language-basics/103-data-structures/112-stack.md
  4. 2
      src/data/roadmaps/rust/content/101-language-basics/103-data-structures/113-queue.md

@ -4,4 +4,4 @@ The **Linked List** in Rust is a sequence of nodes where each node consists of a
Learn more from the following links:
- [@article@LinkedList](https://doc.rust-lang.org/std/collections/struct.LinkedList.html)
- [@official@LinkedList in std::collections - Rust](https://doc.rust-lang.org/std/collections/struct.LinkedList.html)

@ -4,4 +4,4 @@ A `Binary Heap` is a complete binary tree which is either Min Heap or Max Heap.
Learn more from the following links:
- [@article@BinaryHeap](https://doc.rust-lang.org/std/collections/struct.BinaryHeap.html)
- [@official@BinaryHeap](https://doc.rust-lang.org/std/collections/struct.BinaryHeap.html)

@ -4,4 +4,4 @@ The **Stack** is a fundamental data structure in Rust, which is based on the pri
Learn more from the following links:
- [@article@Box, Stack and Heap](https://doc.rust-lang.org/rust-by-example/std/box.html)
- [@official@Box, Stack and Heap](https://doc.rust-lang.org/rust-by-example/std/box.html)

@ -4,4 +4,4 @@ In Rust, a Queue is another important linear data structure which follows a part
Learn more from the following links:
- [@article@Queues](https://docs.rs/queues/latest/queues/)
- [@official@Queues](https://docs.rs/queues/latest/queues/)

Loading…
Cancel
Save