summaryrefslogtreecommitdiff
path: root/exercises/19_smart_pointers/cow1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/19_smart_pointers/cow1.rs')
-rw-r--r--exercises/19_smart_pointers/cow1.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/exercises/19_smart_pointers/cow1.rs b/exercises/19_smart_pointers/cow1.rs
index fcd3e0b..b24591b 100644
--- a/exercises/19_smart_pointers/cow1.rs
+++ b/exercises/19_smart_pointers/cow1.rs
@@ -12,8 +12,6 @@
//
// Execute `rustlings hint cow1` or use the `hint` watch subcommand for a hint.
-// I AM NOT DONE
-
use std::borrow::Cow;
fn abs_all<'a, 'b>(input: &'a mut Cow<'b, [i32]>) -> &'a mut Cow<'b, [i32]> {