Skip to content

Commit

Permalink
Fix more typos
Browse files Browse the repository at this point in the history
  • Loading branch information
eupn committed Jan 21, 2020
1 parent bbb7513 commit dc6be91
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Replace gpio traits with digital::v2
- Bump `stm32f1` dependency (`0.8.0`)
- ADC now requires the clock configuration for initialisation
- `disable_jtag` now transforms PA15, PB3 and PB4 to forbid their use without desactivating JTAG
- `disable_jtag` now transforms PA15, PB3 and PB4 to forbid their use without deactivating the JTAG

### Changed

Expand Down
2 changes: 1 addition & 1 deletion examples/adc-dma-circ.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use cortex_m_rt::entry;

#[entry]
fn main() -> ! {
// Aquire peripherals
// Acquire peripherals
let p = pac::Peripherals::take().unwrap();
let mut flash = p.FLASH.constrain();
let mut rcc = p.RCC.constrain();
Expand Down
2 changes: 1 addition & 1 deletion examples/adc-dma-rx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use cortex_m_rt::entry;

#[entry]
fn main() -> ! {
// Aquire peripherals
// Acquire peripherals
let p = pac::Peripherals::take().unwrap();
let mut flash = p.FLASH.constrain();
let mut rcc = p.RCC.constrain();
Expand Down
2 changes: 1 addition & 1 deletion examples/adc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use cortex_m_semihosting::hprintln;

#[entry]
fn main() -> ! {
// Aquire peripherals
// Acquire peripherals
let p = pac::Peripherals::take().unwrap();
let mut flash = p.FLASH.constrain();
let mut rcc = p.RCC.constrain();
Expand Down
2 changes: 1 addition & 1 deletion examples/adc_temperature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use cortex_m_semihosting::hprintln;

#[entry]
fn main() -> ! {
// Aquire peripherals
// Acquire peripherals
let p = pac::Peripherals::take().unwrap();
let mut flash = p.FLASH.constrain();
let mut rcc = p.RCC.constrain();
Expand Down
2 changes: 1 addition & 1 deletion src/rtc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ impl Rtc {
// Put the clock into config mode
self.regs.crl.modify(|_, w| w.cnf().set_bit());

// Perform the write opertaion
// Perform the write operation
func(self);

// Take the device out of config mode
Expand Down

0 comments on commit dc6be91

Please sign in to comment.