summaryrefslogtreecommitdiff
path: root/exercises/19_smart_pointers/box1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/19_smart_pointers/box1.rs')
-rw-r--r--exercises/19_smart_pointers/box1.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/exercises/19_smart_pointers/box1.rs b/exercises/19_smart_pointers/box1.rs
index 513e7da..2abc024 100644
--- a/exercises/19_smart_pointers/box1.rs
+++ b/exercises/19_smart_pointers/box1.rs
@@ -18,8 +18,6 @@
//
// Execute `rustlings hint box1` or use the `hint` watch subcommand for a hint.
-// I AM NOT DONE
-
#[derive(PartialEq, Debug)]
pub enum List {
Cons(i32, List),