diff --git a/packages/core/README.md b/packages/core/README.md index 0ff2c114ad..450664991d 100644 --- a/packages/core/README.md +++ b/packages/core/README.md @@ -47,7 +47,7 @@ On the other hand, it can be cancelled anytime. Pay out the workers. Final result URL is recorded. If the escrow is fully paid out, escrow status is changed to `Paid`, otherwise it's changed to `Partial`. - > Trusted handlers, and reputation oracle can call this funciton. + > Trusted handlers, and reputation oracle can call this function. - `complete()` diff --git a/packages/core/test/MetaHumanGovernor.ts b/packages/core/test/MetaHumanGovernor.ts index edafb96a59..02c685132f 100644 --- a/packages/core/test/MetaHumanGovernor.ts +++ b/packages/core/test/MetaHumanGovernor.ts @@ -1039,7 +1039,7 @@ describe('MetaHumanGovernor', function () { ).to.be.revertedWithCustomError(governor, 'MessageAlreadyProcessed'); }); - it('should reverts to receive message when intended receipient is not different', async function () { + it('should reverts to receive message when intended recipient is not different', async function () { const proposalId = await createBasicProposal( daoSpoke, wormholeMockForDaoSpoke, diff --git a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/legacy_encryption.py b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/legacy_encryption.py index 56e6f1d587..5ce0f7c801 100644 --- a/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/legacy_encryption.py +++ b/packages/sdk/python/human-protocol-sdk/human_protocol_sdk/legacy_encryption.py @@ -50,7 +50,7 @@ class Encryption: """ ECIES using AES256 and HMAC-SHA-256-32 """ CIPHER = AES - """ Cipher algorithm defintion. """ + """ Cipher algorithm definition. """ MODE = CTR """ Cipher mode definition. """