From 311fdb2eea6a319ed6348a7edbfd349d30068f9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Mon, 29 Jul 2024 13:25:44 -0300 Subject: [PATCH] lib: Fix clippy problems MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 3d7e897543..fd0d1976ff 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -188,8 +188,8 @@ impl DerefMut for Pwm { pub struct Pwm { pca: Pca9685, /// * `oe_pin`: The `oe_pin` component is a pin that is used to enable or disable the output of the PWM - /// signal. It is connected to the Output Enable (OE) pin of the PCA9685 PWM controller. - /// The default initialization of the navigator sets oe_pin to a digital high state, which disables the PCA9685's PWM. + /// signal. It is connected to the Output Enable (OE) pin of the PCA9685 PWM controller. + /// The default initialization of the navigator sets oe_pin to a digital high state, which disables the PCA9685's PWM. oe_pin: Pin, } @@ -833,7 +833,7 @@ impl Navigator { /// # Arguments /// /// * `array` - A 2D array containing RGB values for each LED. - /// Each inner array is a [u8; 3] representing the Red, Green and Blue from a LED. + /// Each inner array is a [u8; 3] representing the Red, Green and Blue from a LED. /// /// # Example /// @@ -860,7 +860,7 @@ impl Navigator { /// # Arguments /// /// * `array` - A 2D array containing RGBW values for each LED. - /// Each inner array is a [u8; 4] representing the Red, Green, Blue and White from a LED. + /// Each inner array is a [u8; 4] representing the Red, Green, Blue and White from a LED. /// /// # Example ///