summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseporterfield <107010978+seporterfield@users.noreply.github.com>2023-01-01 01:58:04 +0100
committerGitHub <noreply@github.com>2023-01-01 01:58:04 +0100
commita0c5a892d3f1a5b4fa1d2bba41fb1dca145460f3 (patch)
tree06d99f714f00a37485245ff1a341992dadb674ea
parenta8fd315e099e4b5c24b450eb6ba6ec3cccd96854 (diff)
refactoring standard_library_types as iterators
-rw-r--r--exercises/iterators/README.md8
-rw-r--r--exercises/standard_library_types/README.md10
2 files changed, 8 insertions, 10 deletions
diff --git a/exercises/iterators/README.md b/exercises/iterators/README.md
new file mode 100644
index 0000000..0e8b671
--- /dev/null
+++ b/exercises/iterators/README.md
@@ -0,0 +1,8 @@
+# Iterators
+
+This section will teach you about Iterators.
+
+## Further information
+
+- [Iterator](https://doc.rust-lang.org/book/ch13-02-iterators.html)
+- [Iterator documentation](https://doc.rust-lang.org/stable/std/iter/)
diff --git a/exercises/standard_library_types/README.md b/exercises/standard_library_types/README.md
deleted file mode 100644
index 809d61f..0000000
--- a/exercises/standard_library_types/README.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Standard library types
-
-This section will teach you about Box, Shared-State Concurrency and Iterators.
-
-## Further information
-
-- [Using Box to Point to Data on the Heap](https://doc.rust-lang.org/book/ch15-01-box.html)
-- [Shared-State Concurrency](https://doc.rust-lang.org/book/ch16-03-shared-state.html)
-- [Iterator](https://doc.rust-lang.org/book/ch13-02-iterators.html)
-- [Iterator documentation](https://doc.rust-lang.org/stable/std/iter/)