From 166a53946cf79d01f0ae670d7778f9f7221b7cba Mon Sep 17 00:00:00 2001
From: Martin HART <82845873+martinhartxyz@users.noreply.github.com>
Date: Tue, 27 Apr 2021 20:22:13 +0200
Subject: [PATCH 1/2] Correct small typo in exercises/conversions/from_str.rs

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

diff --git a/exercises/conversions/from_str.rs b/exercises/conversions/from_str.rs
index 4beebac..93a5299 100644
--- a/exercises/conversions/from_str.rs
+++ b/exercises/conversions/from_str.rs
@@ -20,7 +20,7 @@ struct Person {
 // 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
+// 6. 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 {

From 86cc85295ae36948963ae52882e285d7e3e29323 Mon Sep 17 00:00:00 2001
From: Martin HART <82845873+martinhartxyz@users.noreply.github.com>
Date: Tue, 27 Apr 2021 20:22:13 +0200
Subject: [PATCH 2/2] fix: Correct small typo in
 exercises/conversions/from_str.rs

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

diff --git a/exercises/conversions/from_str.rs b/exercises/conversions/from_str.rs
index 4beebac..93a5299 100644
--- a/exercises/conversions/from_str.rs
+++ b/exercises/conversions/from_str.rs
@@ -20,7 +20,7 @@ struct Person {
 // 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
+// 6. 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 {