diff --git a/examples/bare0.rs b/examples/bare0.rs index f64c03267edb5e2279df5448c0767c73add8d5b7..fbd8cea31a1c0d5435f01ff6301592b5c1cb96cf 100644 --- a/examples/bare0.rs +++ b/examples/bare0.rs @@ -35,7 +35,7 @@ static mut Y: u32 = 0; #[entry] fn main() -> ! { - // local mutabale variable (changed in safe code) + // local mutable variable (changed in safe code) let mut x = unsafe { X }; loop { @@ -77,6 +77,7 @@ fn main() -> ! { // // 2. Alter the constant X_INIT so that `x += 1` directly causes `x` to wrap. // What happens when `x` wraps +// (Hint, look under OUTPUT/Adopter Output to see the `openocd` output.) // // ** your answer here ** //