From 03db2205ce855a42cafba6a19781364b997b7d71 Mon Sep 17 00:00:00 2001 From: Viktor Zahorodnii Date: Mon, 23 Mar 2026 12:25:13 +0200 Subject: [PATCH] (minor) Change "anyhow" to "anyway" as seemingly more appropriate --- mdbook/src/15-interrupts/sharing-data-with-globals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mdbook/src/15-interrupts/sharing-data-with-globals.md b/mdbook/src/15-interrupts/sharing-data-with-globals.md index ec3df3f3..514f2fdd 100644 --- a/mdbook/src/15-interrupts/sharing-data-with-globals.md +++ b/mdbook/src/15-interrupts/sharing-data-with-globals.md @@ -254,7 +254,7 @@ struct and set up once the program has started: there is no `const` initializer there reasonably be). Let's rewrite the button counter a bit. First, move the actual count to be an `AtomicUsize`. This is -a more natural type for this global anyhow. Next, add a global `GPIOTE_PERIPHERAL` variable using +a more natural type for this global anyway. Next, add a global `GPIOTE_PERIPHERAL` variable using the `LockMut` type from the `critical-section-lock-mut` crate. This crate is a convenient wrapper for the pattern of the last section.