Skip to content

Commit 311fdb2

Browse files
patrickelectricjoaoantoniocardoso
authored andcommitted
lib: Fix clippy problems
Signed-off-by: Patrick José Pereira <[email protected]>
1 parent 77a9061 commit 311fdb2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ impl DerefMut for Pwm {
188188
pub struct Pwm {
189189
pca: Pca9685<I2cdev>,
190190
/// * `oe_pin`: The `oe_pin` component is a pin that is used to enable or disable the output of the PWM
191-
/// signal. It is connected to the Output Enable (OE) pin of the PCA9685 PWM controller.
192-
/// The default initialization of the navigator sets oe_pin to a digital high state, which disables the PCA9685's PWM.
191+
/// signal. It is connected to the Output Enable (OE) pin of the PCA9685 PWM controller.
192+
/// The default initialization of the navigator sets oe_pin to a digital high state, which disables the PCA9685's PWM.
193193
oe_pin: Pin,
194194
}
195195

@@ -833,7 +833,7 @@ impl Navigator {
833833
/// # Arguments
834834
///
835835
/// * `array` - A 2D array containing RGB values for each LED.
836-
/// Each inner array is a [u8; 3] representing the Red, Green and Blue from a LED.
836+
/// Each inner array is a [u8; 3] representing the Red, Green and Blue from a LED.
837837
///
838838
/// # Example
839839
///
@@ -860,7 +860,7 @@ impl Navigator {
860860
/// # Arguments
861861
///
862862
/// * `array` - A 2D array containing RGBW values for each LED.
863-
/// Each inner array is a [u8; 4] representing the Red, Green, Blue and White from a LED.
863+
/// Each inner array is a [u8; 4] representing the Red, Green, Blue and White from a LED.
864864
///
865865
/// # Example
866866
///

0 commit comments

Comments
 (0)