Skip to content

Commit a5429d5

Browse files
updated file paths for iterators, smart_pointers
1 parent 9860976 commit a5429d5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

info.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ If you use a lifetime annotation in a struct's fields, where else does it need t
809809

810810
[[exercises]]
811811
name = "iterators1"
812-
path = "exercises/standard_library_types/iterators1.rs"
812+
path = "exercises/iterators/iterators1.rs"
813813
mode = "compile"
814814
hint = """
815815
Step 1:
@@ -826,7 +826,7 @@ https://doc.rust-lang.org/std/iter/trait.Iterator.html for some ideas.
826826

827827
[[exercises]]
828828
name = "iterators2"
829-
path = "exercises/standard_library_types/iterators2.rs"
829+
path = "exercises/iterators/iterators2.rs"
830830
mode = "test"
831831
hint = """
832832
Step 1
@@ -847,7 +847,7 @@ and very general. Rust just needs to know the desired type."""
847847

848848
[[exercises]]
849849
name = "iterators3"
850-
path = "exercises/standard_library_types/iterators3.rs"
850+
path = "exercises/iterators/iterators3.rs"
851851
mode = "test"
852852
hint = """
853853
The divide function needs to return the correct error when even division is not
@@ -866,7 +866,7 @@ can make the solution to this exercise infinitely easier."""
866866

867867
[[exercises]]
868868
name = "iterators4"
869-
path = "exercises/standard_library_types/iterators4.rs"
869+
path = "exercises/iterators/iterators4.rs"
870870
mode = "test"
871871
hint = """
872872
In an imperative language, you might write a for loop that updates
@@ -878,7 +878,7 @@ Hint 2: Check out the `fold` and `rfold` methods!"""
878878

879879
[[exercises]]
880880
name = "iterators5"
881-
path = "exercises/standard_library_types/iterators5.rs"
881+
path = "exercises/iterators/iterators5.rs"
882882
mode = "test"
883883
hint = """
884884
The documentation for the std::iter::Iterator trait contains numerous methods
@@ -960,7 +960,7 @@ See https://doc.rust-lang.org/book/ch16-02-message-passing.html for more info.
960960

961961
[[exercises]]
962962
name = "box1"
963-
path = "exercises/standard_library_types/box1.rs"
963+
path = "exercises/smart_pointers/box1.rs"
964964
mode = "test"
965965
hint = """
966966
Step 1
@@ -978,7 +978,7 @@ and try other types!
978978

979979
[[exercises]]
980980
name = "rc1"
981-
path = "exercises/standard_library_types/rc1.rs"
981+
path = "exercises/smart_pointers/rc1.rs"
982982
mode = "compile"
983983
hint = """
984984
This is a straightforward exercise to use the Rc<T> type. Each Planet has
@@ -992,7 +992,7 @@ https://doc.rust-lang.org/book/ch15-04-rc.html
992992

993993
[[exercises]]
994994
name = "arc1"
995-
path = "exercises/standard_library_types/arc1.rs"
995+
path = "exercises/smart_pointers/arc1.rs"
996996
mode = "compile"
997997
hint = """
998998
Make `shared_numbers` be an `Arc` from the numbers vector. Then, in order
@@ -1009,7 +1009,7 @@ https://doc.rust-lang.org/stable/book/ch16-00-concurrency.html
10091009

10101010
[[exercises]]
10111011
name = "cow1"
1012-
path = "exercises/standard_library_types/cow1.rs"
1012+
path = "exercises/smart_pointers/cow1.rs"
10131013
mode = "compile"
10141014
hint = """
10151015
Since the vector is already owned, the `Cow` type doesn't need to clone it.

0 commit comments

Comments
 (0)