re-do deepaksirone's fix on the actual source file
[rust-101.git] / workspace / src / part06.rs
index 04a08478f87d428dc75fadc6c1111b9fabce8356..3bc7d0834759df4346b3261feb93e330b6ffaf93 100644 (file)
@@ -25,7 +25,7 @@ impl BigInt {
 // Now we can write `vec_min`.
 fn vec_min(v: &Vec<BigInt>) -> Option<BigInt> {
     let mut min: Option<BigInt> = None;
-    // If `v` is a shared borrowed vector, then the default for iterating over it is to call `iter`, the iterator that borrows the elements.
+    // If `v` is a shared reference to a vector, then the default for iterating over it is to call `iter`, the iterator that borrows the elements.
     for e in v {
         let e = e.clone();
         unimplemented!()