From d08639f6434b47c2208301d733c554e567c45706 Mon Sep 17 00:00:00 2001 From: Mikkel <31762830+mikkelens@users.noreply.github.com> Date: Wed, 12 Jun 2024 14:56:21 +0200 Subject: [PATCH] Add missing word "pin" in rp pwm documentation It is confusing to read without. The corrected line reads like its 'b' pin counterpart (few lines below). --- embassy-rp/src/pwm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embassy-rp/src/pwm.rs b/embassy-rp/src/pwm.rs index 20b5c4d58..c35e76587 100644 --- a/embassy-rp/src/pwm.rs +++ b/embassy-rp/src/pwm.rs @@ -129,7 +129,7 @@ impl<'d> Pwm<'d> { Self::new_inner(slice.number(), None, None, Pull::None, config, Divmode::DIV) } - /// Create PWM driver with a single 'a' as output. + /// Create PWM driver with a single 'a' pin as output. #[inline] pub fn new_output_a( slice: impl Peripheral

+ 'd,