diff --git a/apps/docs/versioned_docs/version-V1/what-is-semaphore.md b/apps/docs/versioned_docs/version-V1/what-is-semaphore.md index 4cfee3b7..85ee0f4c 100644 --- a/apps/docs/versioned_docs/version-V1/what-is-semaphore.md +++ b/apps/docs/versioned_docs/version-V1/what-is-semaphore.md @@ -95,7 +95,7 @@ to any question. The user, however, can only vote once per question. ## About the code This repository contains the code for Semaphore's contracts written in -Soliidty, and zk-SNARK circuits written in +Solidity, and zk-SNARK circuits written in [circom](https://github.com/iden3/circom). It also contains Typescript code to execute tests. diff --git a/packages/contracts/test/Semaphore.ts b/packages/contracts/test/Semaphore.ts index 9e5d0cfb..96d093b2 100644 --- a/packages/contracts/test/Semaphore.ts +++ b/packages/contracts/test/Semaphore.ts @@ -418,13 +418,13 @@ describe("Semaphore", () => { describe("SemaphoreGroups", () => { describe("# hasMember", () => { - it("Should return true because the memeber is part of the group", async () => { + it("Should return true because the member is part of the group", async () => { const groupId = 1 const isMember = await semaphoreContract.hasMember(groupId, members[0]) await expect(isMember).to.be.true }) - it("Should return false because the memeber is not part of the group", async () => { + it("Should return false because the member is not part of the group", async () => { const groupId = 1 const identity = new Identity() const isMember = await semaphoreContract.hasMember(groupId, identity.commitment)