Skip to content

Commit

Permalink
fix: typos in documentation files (#3138)
Browse files Browse the repository at this point in the history
* Update README.md

* Update MetaHumanGovernor.ts

* Update legacy_encryption.py
  • Loading branch information
kilavvy authored Mar 4, 2025
1 parent bff7aaf commit 30f7b5b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()`

Expand Down
2 changes: 1 addition & 1 deletion packages/core/test/MetaHumanGovernor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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. """
Expand Down

0 comments on commit 30f7b5b

Please sign in to comment.