We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 565b1aa commit 0e29e01Copy full SHA for 0e29e01
uefi-raw/src/status.rs
@@ -1,5 +1,6 @@
1
// SPDX-License-Identifier: MIT OR Apache-2.0
2
3
+use crate::newtype_enum;
4
use core::fmt::Debug;
5
6
newtype_enum! {
@@ -46,7 +47,7 @@ pub enum Status: usize => {
46
47
WRITE_PROTECTED = Self::ERROR_BIT | 8,
48
/// A resource has run out.
49
OUT_OF_RESOURCES = Self::ERROR_BIT | 9,
- /// An inconstency was detected on the file system.
50
+ /// An inconsistency was detected on the file system.
51
VOLUME_CORRUPTED = Self::ERROR_BIT | 10,
52
/// There is no more space on the file system.
53
VOLUME_FULL = Self::ERROR_BIT | 11,
0 commit comments