Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
elizabethhealy committed Dec 12, 2024
1 parent f950025 commit 1d59b4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ async function tdf3DecryptParamsFor(argv: Partial<mainArgs>): Promise<DecryptPar
c.withNoVerifyAssertions(true);
}
if (argv.assertionVerificationKeys) {
c.withAssertionVerificaitonKeys(
c.withAssertionVerificationKeys(
await parseAssertionVerificationKeys(argv.assertionVerificationKeys)
);
}
Expand Down
2 changes: 1 addition & 1 deletion lib/tdf3/src/client/builders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ class DecryptParamsBuilder {
* @param {AssertionVerificationKeys} assertionVerificationKeys - An array of assertion configurations to be set.
* @returns {DecryptParamsBuilder} The current instance of the EncryptParamsBuilder for method chaining.
*/
withAssertionVerificaitonKeys(
withAssertionVerificationKeys(
assertionVerificationKeys: AssertionVerificationKeys
): DecryptParamsBuilder {
this._params.assertionVerificationKeys = assertionVerificationKeys;
Expand Down

0 comments on commit 1d59b4b

Please sign in to comment.