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: remove repetitive words #1298

Merged
merged 1 commit into from
Mar 14, 2024
Merged
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 core/ts/Poll.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1313,7 +1313,7 @@ export class Poll implements IPoll {

this.tallyResult[j] += v;

// the total spent voice credits will be the sum of the the votes
// the total spent voice credits will be the sum of the votes
this.totalSpentVoiceCredits += v;
}
}
Expand Down
2 changes: 1 addition & 1 deletion website/blog/2024-02-28-maci-v1.2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This is our first release since [MACI v1.1.1](/blog/maci-v1-1-1-release) just ov

## Background

MACI - Minimal Anti-Collusion Infrastructure - is an Ethereum application that provides privacy and collusion resistance for on-chain voting. If you're new to MACI, we first recommend reading our [documentation](/docs/introduction) for background information and and technical details.
MACI - Minimal Anti-Collusion Infrastructure - is an Ethereum application that provides privacy and collusion resistance for on-chain voting. If you're new to MACI, we first recommend reading our [documentation](/docs/introduction) for background information and technical details.

## Refactoring Work

Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-v0.x/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Refer to the [Glossary](#Glossary) for definitions of terms.

- Otherwise, the user should use the most current public key they have registered.

- Submit the the message, as well as the ephemeral public key in the clear to the contract using its `publishMessage()` function, which hashes the command and inserts it into the message tree.
- Submit the message, as well as the ephemeral public key in the clear to the contract using its `publishMessage()` function, which hashes the command and inserts it into the message tree.

5. The coordinator processes all the commands after the voting period ends.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ var x = generateMerkleRoot(

assert(x == currentStateRoot)

// Prove that the the current vote option weight (leaf)
// Prove that the current vote option weight (leaf)
// input is correct by checking that it exists in the
// tree at the given index
var y = generateMerkleRoot(
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-v1.x/workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sidebar_label: Workflow
sidebar_position: 3
---

<!-- TODO: create flowcharts, similar to to Kyle's (but make light/dark mode compatible) -->
<!-- TODO: create flowcharts, similar to Kyle's (but make light/dark mode compatible) -->

# MACI Workflow

Expand Down
Loading