Skip to content

Commit

Permalink
docs: remove duplicate words from documents (#4120)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasmyhigh authored Dec 13, 2024
1 parent 3206c30 commit bd4f91a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/module/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
)

// defaultMigrationsOrder returns a default migrations order. The order is
// ascending alphabetical by module name except "auth" will will be last. See:
// ascending alphabetical by module name except "auth" will be last. See:
// https://github.com/cosmos/cosmos-sdk/issues/10591
func defaultMigrationsOrder(modules []string) []string {
result := filter(modules, isNotAuth)
Expand Down
2 changes: 1 addition & 1 deletion app/test/process_proposal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ func TestProcessProposal(t *testing.T) {
// Replace the data with new contents
d.Txs = [][]byte{blobTx}

// Erasure code the data to update the data root so this doesn't doesn't fail on an incorrect data root.
// Erasure code the data to update the data root so this doesn't fail on an incorrect data root.
d.Hash = calculateNewDataHash(t, d.Txs)
},
appVersion: appconsts.LatestVersion,
Expand Down
2 changes: 1 addition & 1 deletion docs/architecture/adr-006-non-interactive-defaults.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ type parsedTx struct {
// the original raw bytes of the tx
rawTx []byte
// tx is the parsed sdk tx. this is nil for all txs that do not contain a
// MsgWirePayForBlob, as we do not need to parse other types of of transactions
// MsgWirePayForBlob, as we do not need to parse other types of transactions
tx signing.Tx
// msg is the wire msg if it exists in the tx. This field is nil for all txs
// that do not contain one.
Expand Down
2 changes: 1 addition & 1 deletion specs/src/consensus.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ function compute_new_entry(reward, power)
return reward // power
```

After applying a transaction, the new state state root is computed.
After applying a transaction, the new state root is computed.

#### SignedTransactionDataTransfer

Expand Down

0 comments on commit bd4f91a

Please sign in to comment.