fix(try_from_into): fix function name

This commit is contained in:
Rod Elias 2022-07-15 14:08:51 +02:00 committed by mokou
parent 1ef8dacaf6
commit 9b66b2a0e9
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ impl TryFrom<&[i16]> for Color {
}
fn main() {
// Use the `from` function
// Use the `try_from` function
let c1 = Color::try_from((183, 65, 14));
println!("{:?}", c1);