From dab90f7b91a6000fe874e3d664f244048e5fa342 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ton=C4=87i=20Gali=C4=87?= <tuxified@gmail.com>
Date: Tue, 7 Apr 2020 17:00:45 +0200
Subject: [PATCH 1/2] 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).
---
 exercises/conversions/as_ref_mut.rs | 1 -
 1 file changed, 1 deletion(-)

diff --git a/exercises/conversions/as_ref_mut.rs b/exercises/conversions/as_ref_mut.rs
index 5e80e508..2ab63acb 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 {

From 60393999b842227c24595d11a336786504d8922d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ton=C4=87i=20Gali=C4=87?= <tuxified@gmail.com>
Date: Wed, 8 Apr 2020 11:00:11 +0200
Subject: [PATCH 2/2] remove bottom comment instead of top

---
 exercises/conversions/as_ref_mut.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/exercises/conversions/as_ref_mut.rs b/exercises/conversions/as_ref_mut.rs
index 2ab63acb..aa1e6239 100644
--- a/exercises/conversions/as_ref_mut.rs
+++ b/exercises/conversions/as_ref_mut.rs
@@ -2,13 +2,13 @@
 // 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 {
     arg.as_ref().as_bytes().len()
 }
 
-// I AM NOT DONE
 // Obtain the number of characters (not bytes) in the given argument
 // Add the AsRef trait appropriately as a trait bound
 fn char_counter<T>(arg: T) -> usize {