From 4a078db73a63467afeb9df6b6a912ac65c7737a2 Mon Sep 17 00:00:00 2001
From: Jihchi Lee <jihchi@users.noreply.github.com>
Date: Thu, 30 Apr 2020 21:02:23 +0800
Subject: [PATCH] fix(from_into.rs): typo

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

diff --git a/exercises/conversions/from_into.rs b/exercises/conversions/from_into.rs
index 58b860e..c5cba23 100644
--- a/exercises/conversions/from_into.rs
+++ b/exercises/conversions/from_into.rs
@@ -31,7 +31,7 @@ impl Default for Person {
 // 3. Extract the first element from the split operation and use it as the name
 // 4. Extract the other element from the split operation and parse it into a `usize` as the age
 // If while parsing the age, something goes wrong, then return the default of Person
-// Otherwise, then return an instantiated Person onject with the results
+// Otherwise, then return an instantiated Person object with the results
 impl From<&str> for Person {
     fn from(s: &str) -> Person {
     }