diff --git a/exercises/04_traits/08_from/src/lib.rs b/exercises/04_traits/08_from/src/lib.rs index cc6f5b1..7f082ab 100644 --- a/exercises/04_traits/08_from/src/lib.rs +++ b/exercises/04_traits/08_from/src/lib.rs @@ -1,4 +1,4 @@ -// TODO: Implement the `From` trait for the `WrappingU32` type to make `example` compile. +// TODO: Implement the `From` trait for the `u32` type to make `example` compile. pub struct WrappingU32 { value: u32,