Skip to content

Commit 7e8ad77

Browse files
Merge pull request #448 from tgonzalezorlandoarm/tg/main-spellcheck-corrections
ci: Update Check Spelling job exceptions
2 parents 279e4e4 + 1189285 commit 7e8ad77

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.codespellrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[codespell]
22
skip = .git,target,Cargo.lock
3-
ignore-words-list = crate,keypair,daa
3+
ignore-words-list = acsend,crate,keypair,daa

tss-esapi/src/abstraction/pcr/bank.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ impl PcrBank {
7676
self.bank.is_empty()
7777
}
7878

79-
/// Removees the [Digest] associated with the [PcrSlot] and
79+
/// Removes the [Digest] associated with the [PcrSlot] and
8080
/// returns it.
8181
///
8282
/// # Details

tss-esapi/src/context/tpm_commands/duplication_commands.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ impl Context {
178178
/// # .key_handle;
179179
/// #
180180
/// # // Fixed TPM and Fixed Parent should be "false" for an object
181-
/// # // to be elligible for duplication
181+
/// # // to be eligible for duplication
182182
/// # let object_attributes = ObjectAttributesBuilder::new()
183183
/// # .with_fixed_tpm(false)
184184
/// # .with_fixed_parent(false)
@@ -500,7 +500,7 @@ impl Context {
500500
/// # .key_handle;
501501
/// #
502502
/// # // Fixed TPM and Fixed Parent should be "false" for an object
503-
/// # // to be elligible for duplication
503+
/// # // to be eligible for duplication
504504
/// # let object_attributes = ObjectAttributesBuilder::new()
505505
/// # .with_fixed_tpm(false)
506506
/// # .with_fixed_parent(false)

tss-esapi/src/utils/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ use zeroize::{Zeroize, ZeroizeOnDrop};
2828
/// Rust native wrapper for `TPMS_CONTEXT` objects.
2929
///
3030
/// This structure is intended to help with persisting object contexts. As the main reason for
31-
/// saving the context of an object is to be able to re-use it later, on demand, a serializable
31+
/// saving the context of an object is to be able to reuse it later, on demand, a serializable
3232
/// structure is most commonly needed. `TpmsContext` implements the `Serialize` and `Deserialize`
3333
/// defined by `serde`.
3434
#[derive(Debug, Serialize, Deserialize, Clone, Zeroize, ZeroizeOnDrop)]

tss-esapi/tests/integration_tests/context_tests/tpm_commands/duplication_commands_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ mod test_duplicate {
127127
let mut context = create_ctx_with_session();
128128

129129
// Fixed TPM and Fixed Parent should be "false" for an object
130-
// to be elligible for duplication
130+
// to be eligible for duplication
131131
let object_attributes = ObjectAttributesBuilder::new()
132132
.with_fixed_tpm(false)
133133
.with_fixed_parent(false)

0 commit comments

Comments
 (0)