Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Update Check Spelling job exceptions #448

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading