summaryrefslogtreecommitdiff
path: root/exercises/conversions/try_from_into.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/conversions/try_from_into.rs')
-rw-r--r--exercises/conversions/try_from_into.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/exercises/conversions/try_from_into.rs b/exercises/conversions/try_from_into.rs
index cd14daf..38ce2db 100644
--- a/exercises/conversions/try_from_into.rs
+++ b/exercises/conversions/try_from_into.rs
@@ -15,12 +15,12 @@ struct Color {
// Your task is to complete this implementation
// and return an Ok result of inner type Color.
-// You need create implementation for a tuple of three integer,
-// an array of three integer and slice of integer.
+// You need to create an implementation for a tuple of three integers,
+// an array of three integers and a slice of integers.
//
-// 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.
+// Note that the implementation for tuple and array will be checked at compile time,
+// but the slice implementation needs to check the slice length!
+// Also note that correct RGB color values must be integers in the 0..=255 range.
// Tuple implementation
impl TryFrom<(i16, i16, i16)> for Color {