Skip to content

Commit

Permalink
chore: remove repetitive words (#11194)
Browse files Browse the repository at this point in the history
Signed-off-by: curlwget <[email protected]>
  • Loading branch information
curlwget authored Sep 23, 2024
1 parent 6004548 commit 2d36c63
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/celotool/src/e2e-tests/slashing_tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ describe('slashing tests', function (this: any) {
],
}

// Do a shallow copy so that the instance objects are the the same (even after the init step fills private keys, etc.)
// Do a shallow copy so that the instance objects are the same (even after the init step fills private keys, etc.)
const gethConfigDown = _.clone(gethConfig)
// Exclude the last validator to simulate it being down
gethConfigDown.instances = gethConfig.instances.slice(0, gethConfig.instances.length - 1)
Expand Down
2 changes: 1 addition & 1 deletion packages/celotool/src/lib/testnet-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export async function uploadEnvFileToGoogleStorage(networkName: string) {
const metaData =
`# .env file for network "${networkName}"\n` +
`# Last modified by "${userInfo}"\n` +
`# Last modified on on ${Date()}\n` +
`# Last modified on ${Date()}\n` +
`# Base commit: "https://github.com/${repo}/commit/${commitHash}"\n`
const fullData = metaData + '\n' + envFileData
await uploadDataToGoogleStorage(
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The contents of this package are licensed under the terms of the GNU Lesser Publ

### Initial deployment

See the the [testnet helm chart README](../helm-charts/testnet/README.md) for how to expose the RPC endpoint.
See the [testnet helm chart README](../helm-charts/testnet/README.md) for how to expose the RPC endpoint.

Then, to deploy contracts to a network run:

Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/contracts/common/FeeHandler.sol
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ contract FeeHandler is
}

/**
@dev Distributes the the token for to the feeBeneficiary.
@dev Distributes the token for to the feeBeneficiary.
*/
function handle(address tokenAddress) external {
return _handle(tokenAddress);
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/contracts/governance/Governance.sol
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ contract Governance is

/**
* @notice Updates the number of proposals to dequeue at a time.
* @param _concurrentProposals The number of proposals to dequeue at at a time.
* @param _concurrentProposals The number of proposals to dequeue at a time.
*/
function setConcurrentProposals(uint256 _concurrentProposals) public onlyOwner {
require(_concurrentProposals != 0, "Number of proposals must be larger than zero");
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/contracts/governance/ReleaseGold.sol
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ contract ReleaseGold is UsingRegistry, ReentrancyGuard, IReleaseGold, Initializa
}

/**
* @notice A wrapper setter function for the for the data encryption key
* @notice A wrapper setter function for the data encryption key
* and version of an account.
* @param dataEncryptionKey Secp256k1 public key for data encryption.
* Preferably compressed.
Expand Down

0 comments on commit 2d36c63

Please sign in to comment.