summaryrefslogtreecommitdiff
path: root/exercises/structs/structs3.rs
diff options
context:
space:
mode:
authormokou <mokou@fastmail.com>2022-07-14 12:04:54 +0200
committermokou <mokou@fastmail.com>2022-07-14 12:04:54 +0200
commit886d599c96ad0725cee05c50cf4ea9718fc02746 (patch)
treed49b630b5101622b54837cf3d82e432ee2729f7d /exercises/structs/structs3.rs
parent4531c21bf1b54ff5fa8cc796584043b826cf78e8 (diff)
fix(structs): add hint comments
Diffstat (limited to 'exercises/structs/structs3.rs')
-rw-r--r--exercises/structs/structs3.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/structs/structs3.rs b/exercises/structs/structs3.rs
index e5666e2..0b3615f 100644
--- a/exercises/structs/structs3.rs
+++ b/exercises/structs/structs3.rs
@@ -2,7 +2,7 @@
// Structs contain data, but can also have logic. In this exercise we have
// defined the Package struct and we want to test some logic attached to it.
// Make the code compile and the tests pass!
-// If you have issues execute `rustlings hint structs3`
+// Execute `rustlings hint structs3` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE