Skip to content

Commit af4d2fd

Browse files
pudongairMSalopek
andauthored
chore: fix some comments (#3206)
Signed-off-by: pudongair <[email protected]> Co-authored-by: MSalopek <[email protected]>
1 parent f624163 commit af4d2fd

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

RELEASE_PROCESS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ The intention of the Stable Release Policy is to ensure that all major release s
242242
are maintained with the following categories of fixes:
243243
244244
- Tooling improvements (including code formatting, linting, static analysis and updates to testing frameworks)
245-
- Performance enhancements for running archival and synching nodes
245+
- Performance enhancements for running archival and syncing nodes
246246
- Test and benchmarking suites, ensuring that fixes are sound and there are no performance regressions
247247
- Library updates including point releases for core libraries such as IBC-Go, Cosmos SDK, Tendermint and other dependencies
248248
- General maintenance improvements, that are deemed necessary by the stewarding team, that help align different releases and reduce the workload on the stewarding team

docs/docs/architecture/adr/adr-001-interchain-accounts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ There are future releases of Interchain Accounts which are expected to be backwa
4747
## Development
4848

4949
- Integration requirements
50-
- Development has occured in [IBC-go](https://github.com/cosmos/ibc-go) and progress tracked on the project board there.
50+
- Development has occurred in [IBC-go](https://github.com/cosmos/ibc-go) and progress tracked on the project board there.
5151
- Testing (Simulations, Core Team Testing, Partner Testing)
5252
- Simulations and Core Team tested this module
5353
- Audits (Internal Dev review, Third-party review, Bug Bounty)

docs/docs/architecture/adr/adr-003-ica-controller.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Enabling the ICA Controller module on the Hub would support various use cases. O
1818

1919
## Decision
2020

21-
The ICA Controller module will be included in the application, so the Hub will have both ICA Host and Controller modules. The implementation will use the Controller module's built-in authentication mechanism, since we don't have a need for custom authentication logic. According to this, users will directly use `MsgRegisterInterchainAccount` and `MsgSendTx` messages defined by the Controller module. The possibility provided by the Controller module to define underlaying application to have custom processing of IBC messages exchanged by the Controller module (e.g. `OnChanOpenInit`, `OnAcknowledgementPacket`, etc.) will not be used, since there is currently no need for this.
21+
The ICA Controller module will be included in the application, so the Hub will have both ICA Host and Controller modules. The implementation will use the Controller module's built-in authentication mechanism, since we don't have a need for custom authentication logic. According to this, users will directly use `MsgRegisterInterchainAccount` and `MsgSendTx` messages defined by the Controller module. The possibility provided by the Controller module to define underlying application to have custom processing of IBC messages exchanged by the Controller module (e.g. `OnChanOpenInit`, `OnAcknowledgementPacket`, etc.) will not be used, since there is currently no need for this.
2222

2323
```go
2424
// ICA Controller keeper

docs/docs/governance/best-practices.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ It will be important to balance two things: being detailed and being concise. Yo
7777

7878
Each major proposal type has a rough template available on the forum: [Text](https://forum.cosmos.network/t/about-the-signaling-text-category/5947), [community pool spend](https://forum.cosmos.network/t/about-the-community-spend-category/5949), [parameter change](https://forum.cosmos.network/t/about-the-parameter-change-category/5950), [software upgrade](https://forum.cosmos.network/t/about-the-software-upgrade-category/5951).
7979

80-
Each proposal should contain a summmary with key details about what the proposal hopes to change. If you were viewing only the summary with no other context, it should be a good start to being able to make a decision.
80+
Each proposal should contain a summary with key details about what the proposal hopes to change. If you were viewing only the summary with no other context, it should be a good start to being able to make a decision.
8181

8282
Assume that many people will stop reading at this point. However it is important to provide in-depth information. The on-chain proposal text should also include a link to an un-editable version of the text, such as an IPFS pin, and a link to where discussion about the idea is happening.
8383

docs/docs/governance/formatting.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ You can update these CosmosHub modules using `submit-legacy-proposal`:
9393
* provider
9494
:::
9595

96-
**Note:** The chages outlined here must be submitted using `submit-legacy-proposal`.
96+
**Note:** The changes outlined here must be submitted using `submit-legacy-proposal`.
9797

9898
For `param-change` proposals, there are arguably seven (7) components, though three are nested beneath 'Changes':
9999

tests/e2e/e2e_exec_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ func (s *IntegrationTestSuite) executeHermesCommand(ctx context.Context, hermesC
707707
if err != nil {
708708
return nil, fmt.Errorf("hermes relayer command returned failed with error: %s", err)
709709
}
710-
// errors are catched by observing the logs level in the stderr output
710+
// errors are caught by observing the logs level in the stderr output
711711
if lvl := out["level"]; lvl != nil && strings.ToLower(lvl.(string)) == "error" {
712712
errMsg := out["fields"].(map[string]interface{})["message"]
713713
return nil, fmt.Errorf("hermes relayer command failed: %s", errMsg)

tests/e2e/scripts/hermes_bootstrap.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ store_prefix = 'ibc'
5555
max_gas = 6000000
5656
gas_price = { price = 0.005, denom = 'uatom' }
5757
gas_multiplier = 1.5
58-
clock_drift = '1m' # to accomdate docker containers
58+
clock_drift = '1m' # to accommodate docker containers
5959
trusting_period = '14days'
6060
trust_threshold = { numerator = '1', denominator = '3' }
6161
dynamic_gas_price = { enabled = true, multiplier = 1.3, max = 0.05 }
@@ -73,7 +73,7 @@ store_prefix = 'ibc'
7373
max_gas = 6000000
7474
gas_price = { price = 0.005, denom = 'uatom' }
7575
gas_multiplier = 1.5
76-
clock_drift = '1m' # to accomdate docker containers
76+
clock_drift = '1m' # to accommodate docker containers
7777
trusting_period = '14days'
7878
trust_threshold = { numerator = '1', denominator = '3' }
7979
dynamic_gas_price = { enabled = true, multiplier = 1.3, max = 0.05 }

0 commit comments

Comments
 (0)