diff --git a/examples/rtic_bare1.rs b/examples/rtic_bare1.rs index 450038914a05d79aa0ceb3687c92701a7cdad86c..5bc07b4eec8974101e036955faf492efb0306e7d 100644 --- a/examples/rtic_bare1.rs +++ b/examples/rtic_bare1.rs @@ -50,7 +50,7 @@ const APP: () = { // // Explain in your own words why the code panic:ed. // -// It panicked because of an attempted overflow +// It panicked because of an attempted overflow. You add 1 to max on a unsinged 32 and that should trigger an error. // // Commit your answer (bare1_1) //