X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/2eb15e9ad4c5f980bb007347146568fd41223011..ff92eaa5332ba1ac1efab2d6be3a227774fb5946:/src/part02.rs diff --git a/src/part02.rs b/src/part02.rs index a24a9d0..2bf4d97 100644 --- a/src/part02.rs +++ b/src/part02.rs @@ -148,7 +148,7 @@ pub fn main() { //@ If this printed `3`, then your generic `vec_min` is working! So get ready for the next part. // **Exercise 02.1**: Change your program such that it computes the minimum of a `Vec` (where -// `f32` is the type // of 32-bit floating-point numbers). You should not change `vec_min` in any +// `f32` is the type of 32-bit floating-point numbers). You should not change `vec_min` in any // way, obviously! //@ [index](main.html) | [previous](part01.html) | [raw source](workspace/src/part02.rs) |