Skip to content

Commit

Permalink
Fix typo in error message and enum variant
Browse files Browse the repository at this point in the history
  • Loading branch information
wfchandler committed Jul 23, 2024
1 parent 38575ab commit 1c20475
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions key-manager/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ pub enum Error {
#[error("Secret not loaded for {epoch}")]
SecretNotLoaded { epoch: u64 },

#[error("Failed to retreive secret: {0}")]
SecretRetreival(#[from] SecretRetrieverError),
#[error("Failed to retrieve secret: {0}")]
SecretRetrieval(#[from] SecretRetrieverError),
}

/// Derived Disk Encryption key
Expand Down

0 comments on commit 1c20475

Please sign in to comment.