typos, and a TODO list
[rust-101.git] / workspace / src / part08.rs
index d03934a8a023b6827f2c9298ccd9bca51d9fc0dd..61f665f26cb8c5a4af203031536e2367c2d715c1 100644 (file)
@@ -15,7 +15,7 @@ fn overflowing_add(a: u64, b: u64, carry: bool) -> (u64, bool) {
         // **Exercise 08.1**: Write the code to handle adding the carry in this case.
         unimplemented!()
     } else {
-        // The addition *did* overflow. It is impossible for the addition of the carry
+        // Otherwise, the addition *did* overflow. It is impossible for the addition of the carry
         // to overflow again, as we are just adding 0 or 1.
         unimplemented!()
     }