From 67076d721f6edc843f603834e1bea4e3aa12a3d4 Mon Sep 17 00:00:00 2001
From: Jirka Kremser <535866+jkremser@users.noreply.github.com>
Date: Wed, 17 Feb 2021 18:06:50 +0100
Subject: [PATCH] Update from_str.rs

typos in the comments
---
 exercises/conversions/from_str.rs | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/exercises/conversions/from_str.rs b/exercises/conversions/from_str.rs
index 558a903..41fccd7 100644
--- a/exercises/conversions/from_str.rs
+++ b/exercises/conversions/from_str.rs
@@ -13,13 +13,13 @@ struct Person {
 // I AM NOT DONE
 
 // Steps:
-// 1. If the length of the provided string is 0 an error should be returned
+// 1. If the length of the provided string is 0, an error should be returned
 // 2. Split the given string on the commas present in it
-// 3. Only 2 elements should returned from the split, otherwise return an error
+// 3. Only 2 elements should be returned from the split, otherwise return an error
 // 4. Extract the first element from the split operation and use it as the name
 // 5. Extract the other element from the split operation and parse it into a `usize` as the age
-//    with something like `"4".parse::<usize>()`.
-// 5. If while extracting the name and the age something goes wrong an error should be returned
+//    with something like `"4".parse::<usize>()`
+// 5. If while extracting the name and the age something goes wrong, an error should be returned
 // If everything goes well, then return a Result of a Person object
 
 impl FromStr for Person {