summaryrefslogtreecommitdiff
path: root/exercises/10_modules
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/10_modules')
-rw-r--r--exercises/10_modules/modules1.rs5
-rw-r--r--exercises/10_modules/modules2.rs5
-rw-r--r--exercises/10_modules/modules3.rs5
3 files changed, 0 insertions, 15 deletions
diff --git a/exercises/10_modules/modules1.rs b/exercises/10_modules/modules1.rs
index c750946..931a3e2 100644
--- a/exercises/10_modules/modules1.rs
+++ b/exercises/10_modules/modules1.rs
@@ -1,8 +1,3 @@
-// modules1.rs
-//
-// Execute `rustlings hint modules1` or use the `hint` watch subcommand for a
-// hint.
-
mod sausage_factory {
// Don't let anybody outside of this module see this!
fn get_secret_recipe() -> String {
diff --git a/exercises/10_modules/modules2.rs b/exercises/10_modules/modules2.rs
index 4d3106c..5f8b0d5 100644
--- a/exercises/10_modules/modules2.rs
+++ b/exercises/10_modules/modules2.rs
@@ -1,11 +1,6 @@
-// modules2.rs
-//
// You can bring module paths into scopes and provide new names for them with
// the 'use' and 'as' keywords. Fix these 'use' statements to make the code
// compile.
-//
-// Execute `rustlings hint modules2` or use the `hint` watch subcommand for a
-// hint.
mod delicious_snacks {
// TODO: Fix these use statements
diff --git a/exercises/10_modules/modules3.rs b/exercises/10_modules/modules3.rs
index c211a76..eff24a9 100644
--- a/exercises/10_modules/modules3.rs
+++ b/exercises/10_modules/modules3.rs
@@ -1,12 +1,7 @@
-// modules3.rs
-//
// You can use the 'use' keyword to bring module paths from modules from
// anywhere and especially from the Rust standard library into your scope. Bring
// SystemTime and UNIX_EPOCH from the std::time module. Bonus style points if
// you can do it with one line!
-//
-// Execute `rustlings hint modules3` or use the `hint` watch subcommand for a
-// hint.
// TODO: Complete this use statement
use ???