Skip to content

Commit c3cb084

Browse files
Fix spelling mistakes and add spellcheck exceptions
Signed-off-by: Tomás González <[email protected]>
1 parent 5a7793f commit c3cb084

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Check spelling
1313
uses: codespell-project/actions-codespell@master
1414
with:
15-
ignore_words_list: "crate,daa,keypair"
15+
ignore_words_list: "crate,daa,keypair,AcSend"
1616
path: tss-esapi
1717
skip: "*/target,*-sys"
1818

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)
@@ -501,7 +501,7 @@ impl Context {
501501
/// # .key_handle;
502502
/// #
503503
/// # // Fixed TPM and Fixed Parent should be "false" for an object
504-
/// # // to be elligible for duplication
504+
/// # // to be eligible for duplication
505505
/// # let object_attributes = ObjectAttributesBuilder::new()
506506
/// # .with_fixed_tpm(false)
507507
/// # .with_fixed_parent(false)

tss-esapi/src/utils/mod.rs

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

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)