Skip to content

Commit 23946d5

Browse files
committed
cargo fmt
1 parent 856904f commit 23946d5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/mcpwm.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -520,11 +520,14 @@ impl<U: Unit> Mcpwm<U> {
520520
///
521521
/// The timers of the operators can then in turn scale this frequency down further.
522522
///
523-
/// The lower this is set, the lower frequencies will be reachable. However, this is
523+
/// The lower this is set, the lower frequencies will be reachable. However, this is
524524
/// at the cost of worse resolution at higher frequencies. Same thing goes for the
525525
/// other way. The higher value set here, the more resolution and so on.
526526
#[cfg(not(esp_idf_version = "4.3"))]
527-
pub fn operator_source_frequency(mut self, frequency: impl Into<Hertz>) -> Result<Self, EspError> {
527+
pub fn operator_source_frequency(
528+
mut self,
529+
frequency: impl Into<Hertz>,
530+
) -> Result<Self, EspError> {
528531
let frequency: Hertz = frequency.into();
529532
let frequency: u32 = frequency.into();
530533

0 commit comments

Comments
 (0)