File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 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 {
5656
5757/// Read only NOR flash trait.
5858pub 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.
103103pub 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]`.
You can’t perform that action at this time.
0 commit comments