Skip to content

Commit 81d25ae

Browse files
committed
feat(try_from_into): add hint comments
1 parent 74f44f5 commit 81d25ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/conversions/try_from_into.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Basically, this is the same as From. The main difference is that this should return a Result type
44
// instead of the target type itself.
55
// You can read more about it at https://doc.rust-lang.org/std/convert/trait.TryFrom.html
6-
// Execute `rustlings hint from_str` or use the `hint` watch subcommand for a hint.
6+
// Execute `rustlings hint try_from_into` or use the `hint` watch subcommand for a hint.
77

88
use std::convert::{TryFrom, TryInto};
99

0 commit comments

Comments
 (0)