Skip to content

Commit

Permalink
Merge pull request #448 from tgonzalezorlandoarm/tg/main-spellcheck-c…
Browse files Browse the repository at this point in the history
…orrections

ci: Update Check Spelling job exceptions
  • Loading branch information
tgonzalezorlandoarm authored Oct 5, 2023
2 parents 279e4e4 + 1189285 commit 7e8ad77
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .codespellrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[codespell]
skip = .git,target,Cargo.lock
ignore-words-list = crate,keypair,daa
ignore-words-list = acsend,crate,keypair,daa
2 changes: 1 addition & 1 deletion tss-esapi/src/abstraction/pcr/bank.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ impl PcrBank {
self.bank.is_empty()
}

/// Removees the [Digest] associated with the [PcrSlot] and
/// Removes the [Digest] associated with the [PcrSlot] and
/// returns it.
///
/// # Details
Expand Down
4 changes: 2 additions & 2 deletions tss-esapi/src/context/tpm_commands/duplication_commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ impl Context {
/// # .key_handle;
/// #
/// # // Fixed TPM and Fixed Parent should be "false" for an object
/// # // to be elligible for duplication
/// # // to be eligible for duplication
/// # let object_attributes = ObjectAttributesBuilder::new()
/// # .with_fixed_tpm(false)
/// # .with_fixed_parent(false)
Expand Down Expand Up @@ -500,7 +500,7 @@ impl Context {
/// # .key_handle;
/// #
/// # // Fixed TPM and Fixed Parent should be "false" for an object
/// # // to be elligible for duplication
/// # // to be eligible for duplication
/// # let object_attributes = ObjectAttributesBuilder::new()
/// # .with_fixed_tpm(false)
/// # .with_fixed_parent(false)
Expand Down
2 changes: 1 addition & 1 deletion tss-esapi/src/utils/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ use zeroize::{Zeroize, ZeroizeOnDrop};
/// Rust native wrapper for `TPMS_CONTEXT` objects.
///
/// This structure is intended to help with persisting object contexts. As the main reason for
/// saving the context of an object is to be able to re-use it later, on demand, a serializable
/// saving the context of an object is to be able to reuse it later, on demand, a serializable
/// structure is most commonly needed. `TpmsContext` implements the `Serialize` and `Deserialize`
/// defined by `serde`.
#[derive(Debug, Serialize, Deserialize, Clone, Zeroize, ZeroizeOnDrop)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ mod test_duplicate {
let mut context = create_ctx_with_session();

// Fixed TPM and Fixed Parent should be "false" for an object
// to be elligible for duplication
// to be eligible for duplication
let object_attributes = ObjectAttributesBuilder::new()
.with_fixed_tpm(false)
.with_fixed_parent(false)
Expand Down

0 comments on commit 7e8ad77

Please sign in to comment.