Skip to content

Commit d057d27

Browse files
author
Henrik Snöman
committed
Formatting
1 parent 7d878ce commit d057d27

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/rng.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ fn setup_clocks(prec: rec::Rng, clocks: &CoreClocks) -> Hertz {
6060
))]
6161

6262
/// Note:
63-
/// This uses the register values specified in AN4230 but verification
63+
/// This uses the register values specified in AN4230 but verification
6464
/// using this HAL has not been performed. Users can/should do their
6565
/// own verification or request documentation from ST directly.
6666
/// Requires RNG to be disabled since some register values can only be written when RNGEN = 0
@@ -75,7 +75,7 @@ pub trait RngNist {
7575
))]
7676
impl RngNist for RNG {
7777
/// Note:
78-
/// This uses the register values specified in AN4230 but verification
78+
/// This uses the register values specified in AN4230 but verification
7979
/// using this HAL has not been performed. Users can/should do their
8080
/// own verification or request documentation from ST directly.
8181
/// Requires RNG to be disabled since some register values can only be written when RNGEN = 0
@@ -141,7 +141,7 @@ impl RngExt for RNG {
141141
self.htcr().write(|w| unsafe { w.bits(0xAAC7) });
142142

143143
// Set noise source control register
144-
// Note:
144+
// Note:
145145
// This is currently not available in the PAC or SVD for H503 but is planned to be added
146146
#[cfg(not(feature = "stm32h503"))]
147147
self.nscr().write(|w| unsafe { w.bits(0x0003FFFF) });

0 commit comments

Comments
 (0)