From c9e4f2cfb4c48d0b7451263cfb43b9426438122d Mon Sep 17 00:00:00 2001
From: lebedevsergey <sunman_pfc@mail.ru>
Date: Fri, 17 Apr 2020 16:43:01 +0300
Subject: [PATCH] fix: confusing comment in conversions/try_from_into.rs

Co-authored-by: Lebedev <sergey.lebedev@corp.mail.ru>
---
 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 255d2e1f..834dd932 100644
--- a/exercises/conversions/try_from_into.rs
+++ b/exercises/conversions/try_from_into.rs
@@ -45,7 +45,7 @@ mod tests {
     use super::*;
     #[test]
     fn test_bad_convert() {
-        // Test that John is returned when bad string is provided
+        // Test that error is returned when bad string is provided
         let p = Person::try_from("");
         assert!(p.is_err());
     }