diff options
| author | mokou <mokou@fastmail.com> | 2022-07-15 13:24:11 +0200 |
|---|---|---|
| committer | mokou <mokou@fastmail.com> | 2022-07-15 13:24:11 +0200 |
| commit | a3c4c1ccb4d7de6638b296387607c0a44b10e11f (patch) | |
| tree | 9c2165e9d9010375770bb9bd942429d585b6261b | |
| parent | a6e86fc995f8e6555b80dc5e73b4d7d78c050706 (diff) | |
fix: re-add missing done comments
| -rw-r--r-- | exercises/clippy/clippy3.rs | 2 | ||||
| -rw-r--r-- | exercises/quiz2.rs | 2 | ||||
| -rw-r--r-- | exercises/strings/strings3.rs | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/exercises/clippy/clippy3.rs b/exercises/clippy/clippy3.rs index 13733c0..b0159eb 100644 --- a/exercises/clippy/clippy3.rs +++ b/exercises/clippy/clippy3.rs @@ -1,6 +1,8 @@ // clippy3.rs // Here's a couple more easy Clippy fixes, so you can see its utility. +// I AM NOT DONE + #[allow(unused_variables, unused_assignments)] fn main() { let my_option: Option<()> = None; diff --git a/exercises/quiz2.rs b/exercises/quiz2.rs index 5d3ccc0..f7437fd 100644 --- a/exercises/quiz2.rs +++ b/exercises/quiz2.rs @@ -18,6 +18,8 @@ // - The output element is going to be a Vector of strings. // Execute `rustlings hint quiz2` or use the `hint` watch subcommand for a hint. +// I AM NOT DONE + pub enum Command { Uppercase, Trim, diff --git a/exercises/strings/strings3.rs b/exercises/strings/strings3.rs index bb0a259..9e25d30 100644 --- a/exercises/strings/strings3.rs +++ b/exercises/strings/strings3.rs @@ -1,6 +1,8 @@ // strings3.rs // Execute `rustlings hint strings3` or use the `hint` watch subcommand for a hint. +// I AM NOT DONE + fn trim_me(input: &str) -> String { // TODO: Remove whitespace from the end of a string! ??? |
