Skip to content

Commit 0e29e01

Browse files
committed
misc: fix typo
1 parent 565b1aa commit 0e29e01

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

uefi-raw/src/status.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// SPDX-License-Identifier: MIT OR Apache-2.0
22

3+
use crate::newtype_enum;
34
use core::fmt::Debug;
45

56
newtype_enum! {
@@ -46,7 +47,7 @@ pub enum Status: usize => {
4647
WRITE_PROTECTED = Self::ERROR_BIT | 8,
4748
/// A resource has run out.
4849
OUT_OF_RESOURCES = Self::ERROR_BIT | 9,
49-
/// An inconstency was detected on the file system.
50+
/// An inconsistency was detected on the file system.
5051
VOLUME_CORRUPTED = Self::ERROR_BIT | 10,
5152
/// There is no more space on the file system.
5253
VOLUME_FULL = Self::ERROR_BIT | 11,

0 commit comments

Comments
 (0)