Skip to content

Commit fe54d0f

Browse files
fix(modules): adjust hint comments
1 parent c1ed6b1 commit fe54d0f

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

exercises/modules/modules1.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// modules1.rs
2-
// Make me compile! Execute `rustlings hint modules1` for hints :)
2+
// Execute `rustlings hint modules1` or use the `hint` watch subcommand for a hint.
33

44
// I AM NOT DONE
55

exercises/modules/modules2.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
// modules2.rs
22
// You can bring module paths into scopes and provide new names for them with the
33
// 'use' and 'as' keywords. Fix these 'use' statements to make the code compile.
4-
// Make me compile! Execute `rustlings hint modules2` for hints :)
4+
// Execute `rustlings hint modules2` or use the `hint` watch subcommand for a hint.
55

66
// I AM NOT DONE
77

88
mod delicious_snacks {
9-
109
// TODO: Fix these use statements
1110
use self::fruits::PEAR as ???
1211
use self::veggies::CUCUMBER as ???

exercises/modules/modules3.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// and especially from the Rust standard library into your scope.
44
// Bring SystemTime and UNIX_EPOCH
55
// from the std::time module. Bonus style points if you can do it with one line!
6-
// Make me compile! Execute `rustlings hint modules3` for hints :)
6+
// Execute `rustlings hint modules3` or use the `hint` watch subcommand for a hint.
77

88
// I AM NOT DONE
99

0 commit comments

Comments
 (0)