tuning
[rust-101.git] / src / part06.rs
index 00a2bde39038dd3478bb3ac1c44f6c829080bd0e..35cd5a9dc0a82b8a35daf9618ad7498dca0d6937 100644 (file)
@@ -25,8 +25,8 @@ impl BigInt {
     }
 }
 
-// Now we can write `vec_min`. However, in order to make it type-check, we have to make a full (deep) copy of e
-// by calling `clone()`.
+// Now we can write `vec_min`.
+//@ However, in order to make it type-check, we have to make a full (deep) copy of e by calling `clone()`.
 fn vec_min(v: &Vec<BigInt>) -> Option<BigInt> {
     let mut min: Option<BigInt> = None;
     for e in v {