Skip to content

Commit

Permalink
Fix typo in error message and enum variant (#6147)
Browse files Browse the repository at this point in the history
Fix minor typo.
  • Loading branch information
wfchandler authored Jul 25, 2024
1 parent 2d1baf4 commit 836d3a2
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 836d3a2

Please sign in to comment.