From: LukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com> Date: Tue, 14 May 2024 08:02:29 +0000 (+0200) Subject: Fix instructions. X-Git-Url: http://git.euphorik.ch/?a=commitdiff_plain;h=d9a0c025e925d017f564ea31e42b0137fc676c42;p=rust_exercises.git Fix instructions. --- 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,