From 66a43c2e580880964bb7c518ee898fc76ff00ce8 Mon Sep 17 00:00:00 2001 From: Jacob Rosenthal Date: Wed, 10 Nov 2021 19:44:57 -0700 Subject: [PATCH] more comments --- embassy-nrf/src/pwm.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/embassy-nrf/src/pwm.rs b/embassy-nrf/src/pwm.rs index 5063c945..ea629c54 100644 --- a/embassy-nrf/src/pwm.rs +++ b/embassy-nrf/src/pwm.rs @@ -22,8 +22,8 @@ pub struct SimplePwm<'d, T: Instance> { ch3: Option, } -/// SequencePwm allows you to offloader the updating of a sequence of duty -/// cycles to up to four channels, as well as repeat that sequence n times. +/// SequencePwm allows you to offload the updating of a sequence of duty cycles +/// to up to four channels, as well as repeat that sequence n times. pub struct SequencePwm<'d, T: Instance> { phantom: PhantomData<&'d mut T>, ch0: Option,