From 889969ce8f235b1d5286ea6c32101ebc39fc2af6 Mon Sep 17 00:00:00 2001 From: Jonas Jacobsson <jonjac-6@student.ltu.se> Date: Mon, 8 Mar 2021 12:30:37 +0000 Subject: [PATCH] Update rtic_bare1.rs --- examples/rtic_bare1.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/rtic_bare1.rs b/examples/rtic_bare1.rs index fa6df39..0025117 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) // -- GitLab