summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormokou <mokou@fastmail.com>2022-07-11 13:35:16 +0200
committermokou <mokou@fastmail.com>2022-07-11 13:35:16 +0200
commitc3c21ad91fd66bcffedb85f542c1c830e1a7cdc0 (patch)
tree1dbf6df5e3f66904a82cb1b11f01a0d6c44f4303
parent9ed4b0683edcf73ab0fbdcfe479a82898e6d5e42 (diff)
fix(intro): clarify hint usage
-rw-r--r--exercises/intro/intro1.rs2
-rw-r--r--exercises/intro/intro2.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/exercises/intro/intro1.rs b/exercises/intro/intro1.rs
index 5d4becf..45c5acb 100644
--- a/exercises/intro/intro1.rs
+++ b/exercises/intro/intro1.rs
@@ -3,7 +3,7 @@
// We sometimes encourage you to keep trying things on a given exercise, even
// after you already figured it out. If you got everything working and feel
// ready for the next exercise, remove the `I AM NOT DONE` comment below.
-// Execute the command `rustlings hint intro1` for a hint.
+// Execute `rustlings hint intro1` or use the `hint` watch subcommand for a hint.
//
// If you're running this using `rustlings watch`: The exercise file will be reloaded
// when you change one of the lines below! Try adding a `println!` line, or try changing
diff --git a/exercises/intro/intro2.rs b/exercises/intro/intro2.rs
index 97a073f..efc1af2 100644
--- a/exercises/intro/intro2.rs
+++ b/exercises/intro/intro2.rs
@@ -1,6 +1,6 @@
// intro2.rs
// Make the code print a greeting to the world.
-// Execute `rustlings hint intro2` for a hint.
+// Execute `rustlings hint intro2` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE