Skip to content

Commit 9913ae3

Browse files
committed
Bonus typo
1 parent 0895ce4 commit 9913ae3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/nor_flash.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ impl core::fmt::Display for NorFlashErrorKind {
5656

5757
/// Read only NOR flash trait.
5858
pub trait ReadNorFlash: ErrorType {
59-
/// The minumum number of bytes the storage peripheral can read
59+
/// The minimum number of bytes the storage peripheral can read
6060
const READ_SIZE: usize;
6161

6262
/// Read a slice of data from the storage peripheral, starting the read
@@ -101,10 +101,10 @@ pub fn check_read<T: ReadNorFlash>(
101101

102102
/// NOR flash trait.
103103
pub trait NorFlash: ReadNorFlash {
104-
/// The minumum number of bytes the storage peripheral can write
104+
/// The minimum number of bytes the storage peripheral can write
105105
const WRITE_SIZE: usize;
106106

107-
/// The minumum number of bytes the storage peripheral can erase
107+
/// The minimum number of bytes the storage peripheral can erase
108108
const ERASE_SIZE: usize;
109109

110110
/// Erase the given storage range, clearing all data within `[from..to]`.

0 commit comments

Comments
 (0)