diff options
| author | mokou <mokou@fastmail.com> | 2022-07-14 12:11:38 +0200 |
|---|---|---|
| committer | mokou <mokou@fastmail.com> | 2022-07-14 12:11:38 +0200 |
| commit | c6bc97adc10aecbf6a1ba5ff5c7beda1f421a098 (patch) | |
| tree | 4c6fa3da4a62e9ed43354fac364e68596db6477f | |
| parent | d0e8efd19ee9a4a7fe9a62ee76bc035371321c09 (diff) | |
feat(enums3): add hint comment, remove enums1 hint
| -rw-r--r-- | exercises/enums/enums1.rs | 2 | ||||
| -rw-r--r-- | exercises/enums/enums2.rs | 2 | ||||
| -rw-r--r-- | exercises/enums/enums3.rs | 1 | ||||
| -rw-r--r-- | info.toml | 3 |
4 files changed, 4 insertions, 4 deletions
diff --git a/exercises/enums/enums1.rs b/exercises/enums/enums1.rs index a2223d3..511ba74 100644 --- a/exercises/enums/enums1.rs +++ b/exercises/enums/enums1.rs @@ -1,5 +1,5 @@ // enums1.rs -// Make me compile! Execute `rustlings hint enums1` for hints! +// No hints this time! ;) // I AM NOT DONE diff --git a/exercises/enums/enums2.rs b/exercises/enums/enums2.rs index ec32d95..18479f8 100644 --- a/exercises/enums/enums2.rs +++ b/exercises/enums/enums2.rs @@ -1,5 +1,5 @@ // enums2.rs -// Make me compile! Execute `rustlings hint enums2` for hints! +// Execute `rustlings hint enums2` or use the `hint` watch subcommand for a hint. // I AM NOT DONE diff --git a/exercises/enums/enums3.rs b/exercises/enums/enums3.rs index 178b40c..55acf6b 100644 --- a/exercises/enums/enums3.rs +++ b/exercises/enums/enums3.rs @@ -1,5 +1,6 @@ // enums3.rs // Address all the TODOs to make the tests pass! +// Execute `rustlings hint enums3` or use the `hint` watch subcommand for a hint. // I AM NOT DONE @@ -400,8 +400,7 @@ Have a look in The Book, to find out more about method implementations: https:// name = "enums1" path = "exercises/enums/enums1.rs" mode = "compile" -hint = """ -The declaration of the enumeration type has not been defined yet.""" +hint = "No hints this time ;)" [[exercises]] name = "enums2" |
