From febad3e30d46b284f7370e79a81ed8ae821b4819 Mon Sep 17 00:00:00 2001
From: Wei Hu <wh5a@virginia.edu>
Date: Tue, 20 Oct 2020 23:53:12 -0700
Subject: [PATCH] Remove a redundant character from the range

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

diff --git a/exercises/conversions/try_from_into.rs b/exercises/conversions/try_from_into.rs
index b830c16..41f482a 100644
--- a/exercises/conversions/try_from_into.rs
+++ b/exercises/conversions/try_from_into.rs
@@ -20,7 +20,7 @@ struct Color {
 //
 // Note, that implementation for tuple and array will be checked at compile-time,
 // but slice implementation need check slice length!
-// Also note, that chunk of correct rgb color must be integer in range 0..=255.
+// Also note, that chunk of correct rgb color must be integer in range 0..255.
 
 // Tuple implementation
 impl TryFrom<(i16, i16, i16)> for Color {