File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ impl core::fmt::Display for NorFlashErrorKind {
56
56
57
57
/// Read only NOR flash trait.
58
58
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
60
60
const READ_SIZE : usize ;
61
61
62
62
/// Read a slice of data from the storage peripheral, starting the read
@@ -101,10 +101,10 @@ pub fn check_read<T: ReadNorFlash>(
101
101
102
102
/// NOR flash trait.
103
103
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
105
105
const WRITE_SIZE : usize ;
106
106
107
- /// The minumum number of bytes the storage peripheral can erase
107
+ /// The minimum number of bytes the storage peripheral can erase
108
108
const ERASE_SIZE : usize ;
109
109
110
110
/// Erase the given storage range, clearing all data within `[from..to]`.
You can’t perform that action at this time.
0 commit comments