X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/17ab30e2988868e5f59b36bb0364cadb0a1c42f8..63b086dfbd9a5e90700f595c2e6ef7ee10522559:/src/part01.rs diff --git a/src/part01.rs b/src/part01.rs index 1603c14..8b14050 100644 --- a/src/part01.rs +++ b/src/part01.rs @@ -87,7 +87,7 @@ pub fn main() { // You will have to replace `part00` by `part01` in the `main` function in // `main.rs` to run this code. -// **Exercise**: Write a funtion `vec_avg` that computes the average value of a `Vec`. +// **Exercise 01.1**: Write a funtion `vec_avg` that computes the average value of a `Vec`. // // *Hint*: `vec.len()` returns the length of a vector `vec`.