diff options
| author | mokou <mokou@fastmail.com> | 2022-07-15 12:49:49 +0200 |
|---|---|---|
| committer | mokou <mokou@fastmail.com> | 2022-07-15 12:49:49 +0200 |
| commit | 81d25aecff01643221131743b48f6b63377eeb59 (patch) | |
| tree | 9fb548cc267ef48a1a60da975f79e3794745cdf9 /exercises/conversions | |
| parent | 74f44f55e381384dc89ec421568aa1509cd7f277 (diff) | |
feat(try_from_into): add hint comments
Diffstat (limited to 'exercises/conversions')
| -rw-r--r-- | exercises/conversions/try_from_into.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/conversions/try_from_into.rs b/exercises/conversions/try_from_into.rs index 09f730e..bc71a3c 100644 --- a/exercises/conversions/try_from_into.rs +++ b/exercises/conversions/try_from_into.rs @@ -3,7 +3,7 @@ // Basically, this is the same as From. The main difference is that this should return a Result type // instead of the target type itself. // You can read more about it at https://doc.rust-lang.org/std/convert/trait.TryFrom.html -// Execute `rustlings hint from_str` or use the `hint` watch subcommand for a hint. +// Execute `rustlings hint try_from_into` or use the `hint` watch subcommand for a hint. use std::convert::{TryFrom, TryInto}; |
