summaryrefslogtreecommitdiff
path: root/info.toml
diff options
context:
space:
mode:
authorfmoko <mokou@posteo.de>2020-06-12 23:04:51 +0200
committerGitHub <noreply@github.com>2020-06-12 23:04:51 +0200
commite1e453075f5c78e3bca2f0dcaa9260f18d40344d (patch)
treeb39463337929f34919ad7464eb02e9ab318ec732 /info.toml
parentf47d3f422db69da93d7528ac472296d8962037ec (diff)
parent9e4fb1009f1c9e3433915c03e22c2af422e5c5fe (diff)
Merge pull request #422 from AbdouSeck/show-tests-prints
Diffstat (limited to 'info.toml')
-rw-r--r--info.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/info.toml b/info.toml
index 4d96168..ee4ab2f 100644
--- a/info.toml
+++ b/info.toml
@@ -804,7 +804,7 @@ name = "try_from_into"
path = "exercises/conversions/try_from_into.rs"
mode = "test"
hint = """
-Follow the steps provided right before the `From` implementation.
+Follow the steps provided right before the `TryFrom` implementation.
You can also use the example at https://doc.rust-lang.org/std/convert/trait.TryFrom.html"""
[[exercises]]
@@ -821,4 +821,4 @@ mode = "test"
hint = """
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."""
+This is almost like the `try_from_into` exercise."""