diff --git a/.github/ISSUE_TEMPLATE/---feature.md b/.github/ISSUE_TEMPLATE/---feature.md index d5541bb..7910acb 100644 --- a/.github/ISSUE_TEMPLATE/---feature.md +++ b/.github/ISSUE_TEMPLATE/---feature.md @@ -8,7 +8,7 @@ assignees: '' --- **Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] +A clear and concise description of what the problem is. E.g. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. diff --git a/packages/identity-proof.circom/src/identity-proof.circom b/packages/identity-proof.circom/src/identity-proof.circom index 59b0e2f..382c5a6 100644 --- a/packages/identity-proof.circom/src/identity-proof.circom +++ b/packages/identity-proof.circom/src/identity-proof.circom @@ -6,12 +6,12 @@ include "comparators.circom"; // This circuit can be used to prove the possession of a Semaphore private key // without revealing the private key itself. It utilizes -// the {@link https://eips.ethereum.org/EIPS/eip-2494|Baby Jubjub} elliptic curve, the Poseidon hash function which a highly efficient +// the {@link https://eips.ethereum.org/EIPS/eip-2494|Baby Jubjub} elliptic curve, the Poseidon hash function which is a highly efficient // and secure hash function suited for zero-knowledge proof contexts. // A scope value can be used to define a nullifier to prevent the same // proof from being re-used twice. template IdentityProof() { - // The circuit takes two inputs: the private key and an additional scope parameter. + // The circuit takes two inputs: a private key and an additional scope parameter. signal input secret; signal input scope;