fix some more nits
[rust-101.git] / src / part07.rs
index b2ef80906006bae1dc755f4f540fbe4a5dd2efe2..b04d766b8515a6cdb1583fd38af2b120cc353e5a 100644 (file)
@@ -153,7 +153,6 @@ fn test_vec_min() {
 // **Exercise 07.1**: Add some more testcases. In particular, make sure you test the behavior of
 // `vec_min` on an empty vector. Also add tests for `BigInt::from_vec` (in particular, removing
 // trailing zeros). Finally, break one of your functions in a subtle way and watch the test fail.
-// 
 
 // **Exercise 07.2**: Go back to your good ol' `SomethingOrNothing`, and implement `Display` for it.
 // (This will, of course, need a `Display` bound on `T`.) Then you should be able to use them with