From 724edcaf70494316507af2d3bc7cdbcb2b3be06d Mon Sep 17 00:00:00 2001 From: Nicolas Mattia Date: Sun, 26 Oct 2025 11:37:05 +0100 Subject: rp: fix typo in Input interrupt comment --- embassy-rp/src/gpio.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'embassy-rp/src') diff --git a/embassy-rp/src/gpio.rs b/embassy-rp/src/gpio.rs index c15e0e41b..154fc1585 100644 --- a/embassy-rp/src/gpio.rs +++ b/embassy-rp/src/gpio.rs @@ -300,7 +300,7 @@ impl<'d> InputFuture<'d> { // Each INTR register is divided into 8 groups, one group for each // pin, and each group consists of LEVEL_LOW, LEVEL_HIGH, EDGE_LOW, - // and EGDE_HIGH. + // and EDGE_HIGH. pin.int_proc() .inte((pin.pin() / 8) as usize) .write_set(|w| match level { -- cgit