diff --git a/examples/rtic_bare1.rs b/examples/rtic_bare1.rs index fa6df39179cee8d85d63d20e6009a79ebc791f42..00251179c3b595e7f736960681dfb3f16c3ec554 100644 --- a/examples/rtic_bare1.rs +++ b/examples/rtic_bare1.rs @@ -119,7 +119,7 @@ const APP: () = { // // Explain in your own words why a panic makes sense at this point. // -// The panic makes sense because x overflows by increasing the max (2^32 = 4294967295) by 1. +// The panic makes sense because x overflows by increasing the max (2^32 = 4294967295) by 1 and we are using a u32 and checking if it owerflows. // // Commit your answer (bare1_3) //