From 11e988b8f05813cf029cfe8a5761d8f5dbfb89a0 Mon Sep 17 00:00:00 2001 From: sethp Date: Fri, 30 Sep 2022 07:51:25 -0700 Subject: [PATCH] Fix message spelling supress -> suppress Co-authored-by: Gustavo Henrique Nihei <38959758+gustavonihei@users.noreply.github.com> --- esp32c3-hal/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esp32c3-hal/build.rs b/esp32c3-hal/build.rs index 6c2670fc5..f4f7994d5 100644 --- a/esp32c3-hal/build.rs +++ b/esp32c3-hal/build.rs @@ -78,7 +78,7 @@ fn add_defaults() { const OPT_LEVEL_Z_MSG: &str = r#"opt-level=z will produce broken 128-bit shifts (i.e. `1u128 << i`). The hal's interrupt handling relies on that operation, causing an 'attempt to subtract with overflow' panic if an enabled interrupt is triggered while using that opt-level. -Please use `opt-level="s"` in lieu of "z", or alternatively enable `features = ["allow-opt-level-z"]` to supress this error. The latter option is only recommended if you: +Please use `opt-level="s"` in lieu of "z", or alternatively enable `features = ["allow-opt-level-z"]` to suppress this error. The latter option is only recommended if you: * Do not use interrupts, and * Do not have any shifts of 128-bit integers (either u128 or i128) in your code