summaryrefslogtreecommitdiff
path: root/exercises/structs/structs3.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/structs/structs3.rs')
-rw-r--r--exercises/structs/structs3.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/exercises/structs/structs3.rs b/exercises/structs/structs3.rs
index 3536a45..4851317 100644
--- a/exercises/structs/structs3.rs
+++ b/exercises/structs/structs3.rs
@@ -1,8 +1,11 @@
// structs3.rs
+//
// 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!
-// Execute `rustlings hint structs3` or use the `hint` watch subcommand for a hint.
+//
+// Execute `rustlings hint structs3` or use the `hint` watch subcommand for a
+// hint.
// I AM NOT DONE