summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorTonći Galić <tuxified@gmail.com>2020-04-07 17:00:45 +0200
committerGitHub <noreply@github.com>2020-04-07 17:00:45 +0200
commitdab90f7b91a6000fe874e3d664f244048e5fa342 (patch)
tree57cc323373f60a33472808551c41c0954335a320 /exercises
parent71d31256a6a60eb955d756385fa58a1ce140c6f7 (diff)
Remove duplicate not done comment
As indicated in #259 , I found it confusing to have 2 comments as the code wouldn't compile unless I solved both issues (I used the script from #281 to remove a comment and use `:wn` to go to next exercise, hence this tripped me).
Diffstat (limited to 'exercises')
-rw-r--r--exercises/conversions/as_ref_mut.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/exercises/conversions/as_ref_mut.rs b/exercises/conversions/as_ref_mut.rs
index 5e80e50..2ab63ac 100644
--- a/exercises/conversions/as_ref_mut.rs
+++ b/exercises/conversions/as_ref_mut.rs
@@ -2,7 +2,6 @@
// Read more about them at https://doc.rust-lang.org/std/convert/trait.AsRef.html
// and https://doc.rust-lang.org/std/convert/trait.AsMut.html, respectively.
-// I AM NOT DONE
// Obtain the number of bytes (not characters) in the given argument
// Add the AsRef trait appropriately as a trait bound
fn byte_counter<T>(arg: T) -> usize {