X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/b60c82e9d3b03aa36484c1ff68f34f4e78862d46..f212d116773ee38f4e8a6b18c3aaa3869472de7b:/workspace/src/part08.rs diff --git a/workspace/src/part08.rs b/workspace/src/part08.rs index d03934a..61f665f 100644 --- a/workspace/src/part08.rs +++ b/workspace/src/part08.rs @@ -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!() }