Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some typos in comment #207

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crypto/ecies-25519/test/ecies.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe("ECIES", () => {
chai.expect(keyPair.publicKey).to.eql(encoding.hexToArray(TEST_KEY_PAIR.a.publicKey));
});

it("should derive shared keys succesfully", async () => {
it("should derive shared keys successfully", async () => {
const { sharedKey1, sharedKey2 } = await testSharedKeys(keyPairA, keyPairB);
const sharedKey = encoding.hexToArray(TEST_SHARED_KEY);
chai.expect(sharedKey1).to.eql(sharedKey);
Expand Down
2 changes: 1 addition & 1 deletion misc/logger/test/linkedList.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ describe("Circular Array", () => {
chai.expect(array.toOrderedArray()).deep.equal([bString, cString, dString]);
});

it("Extends array length when appropiate via pushing new values", () => {
it("Extends array length when appropriate via pushing new values", () => {
const array = new LinkedList(16);
const aString = "a".repeat(4);
const bString = "b".repeat(4);
Expand Down