From 5d342da6f95d3ca91837523425d7dddb2eab7912 Mon Sep 17 00:00:00 2001
From: IkaR49 <IkaR49@users.noreply.github.com>
Date: Thu, 14 May 2020 20:56:54 +0300
Subject: [PATCH] chore(from_str): Fix hint (rust-lang#393)

---
 info.toml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/info.toml b/info.toml
index c47041b..7858d7c 100644
--- a/info.toml
+++ b/info.toml
@@ -799,5 +799,6 @@ name = "from_str"
 path = "exercises/conversions/from_str.rs"
 mode = "test"
 hint = """
-If you've already solved try_from_into.rs, then this is almost a copy-paste.
-Otherwise, go ahead and solve try_from_into.rs first."""
+The implementation of FromStr should return an Ok with a Person object,
+or an Err with a string if the string is not valid.
+This is a some like an `try_from_into` exercise."""