Skip to content

Commit 2b50dce

Browse files
committed
Moar full stops.
1 parent db4f92a commit 2b50dce

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/delay.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,24 @@
33
use crate::peripheral::{syst::SystClkSource, SYST};
44
use embedded_hal::blocking::delay::{DelayMs, DelayUs};
55

6-
/// System timer (SysTick) as a delay provider
6+
/// System timer (SysTick) as a delay provider.
77
pub struct Delay {
88
syst: SYST,
99
ahb_frequency: u32,
1010
}
1111

1212
impl Delay {
13-
/// Configures the system timer (SysTick) as a delay provider
13+
/// Configures the system timer (SysTick) as a delay provider.
1414
///
15-
/// `ahb_frequency` is a frequency of the AHB bus in Hz
15+
/// `ahb_frequency` is a frequency of the AHB bus in Hz.
1616
#[inline]
1717
pub fn new(mut syst: SYST, ahb_frequency: u32) -> Self {
1818
syst.set_clock_source(SystClkSource::Core);
1919

2020
Delay { syst, ahb_frequency }
2121
}
2222

23-
/// Releases the system timer (SysTick) resource
23+
/// Releases the system timer (SysTick) resource.
2424
#[inline]
2525
pub fn free(self) -> SYST {
2626
self.syst

0 commit comments

Comments
 (0)