Skip to content

Commit b9ce574

Browse files
eupnTheZoq2
authored andcommitted
Fix more typos
1 parent bbb7513 commit b9ce574

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
8989
- Replace gpio traits with digital::v2
9090
- Bump `stm32f1` dependency (`0.8.0`)
9191
- ADC now requires the clock configuration for initialisation
92-
- `disable_jtag` now transforms PA15, PB3 and PB4 to forbid their use without desactivating JTAG
92+
- `disable_jtag` now transforms PA15, PB3 and PB4 to forbid their use without deactivating JTAG
9393

9494
### Changed
9595

examples/adc-dma-circ.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use cortex_m_rt::entry;
1717

1818
#[entry]
1919
fn main() -> ! {
20-
// Aquire peripherals
20+
// Acquire peripherals
2121
let p = pac::Peripherals::take().unwrap();
2222
let mut flash = p.FLASH.constrain();
2323
let mut rcc = p.RCC.constrain();

examples/adc-dma-rx.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use cortex_m_rt::entry;
1616

1717
#[entry]
1818
fn main() -> ! {
19-
// Aquire peripherals
19+
// Acquire peripherals
2020
let p = pac::Peripherals::take().unwrap();
2121
let mut flash = p.FLASH.constrain();
2222
let mut rcc = p.RCC.constrain();

examples/adc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use cortex_m_semihosting::hprintln;
1515

1616
#[entry]
1717
fn main() -> ! {
18-
// Aquire peripherals
18+
// Acquire peripherals
1919
let p = pac::Peripherals::take().unwrap();
2020
let mut flash = p.FLASH.constrain();
2121
let mut rcc = p.RCC.constrain();

examples/adc_temperature.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use cortex_m_semihosting::hprintln;
1515

1616
#[entry]
1717
fn main() -> ! {
18-
// Aquire peripherals
18+
// Acquire peripherals
1919
let p = pac::Peripherals::take().unwrap();
2020
let mut flash = p.FLASH.constrain();
2121
let mut rcc = p.RCC.constrain();

src/rtc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ impl Rtc {
199199
// Put the clock into config mode
200200
self.regs.crl.modify(|_, w| w.cnf().set_bit());
201201

202-
// Perform the write opertaion
202+
// Perform the write operation
203203
func(self);
204204

205205
// Take the device out of config mode

0 commit comments

Comments
 (0)