Skip to content

Commit a3c4c1c

Browse files
fix: re-add missing done comments
1 parent a6e86fc commit a3c4c1c

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

exercises/clippy/clippy3.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// clippy3.rs
22
// Here's a couple more easy Clippy fixes, so you can see its utility.
33

4+
// I AM NOT DONE
5+
46
#[allow(unused_variables, unused_assignments)]
57
fn main() {
68
let my_option: Option<()> = None;

exercises/quiz2.rs

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
// - The output element is going to be a Vector of strings.
1919
// Execute `rustlings hint quiz2` or use the `hint` watch subcommand for a hint.
2020

21+
// I AM NOT DONE
22+
2123
pub enum Command {
2224
Uppercase,
2325
Trim,

exercises/strings/strings3.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// strings3.rs
22
// Execute `rustlings hint strings3` or use the `hint` watch subcommand for a hint.
33

4+
// I AM NOT DONE
5+
46
fn trim_me(input: &str) -> String {
57
// TODO: Remove whitespace from the end of a string!
68
???

0 commit comments

Comments
 (0)