Skip to content

Commit cdbdd0d

Browse files
committed
fix: remove some duplicate words
1 parent e799965 commit cdbdd0d

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

api/cosmos/circuit/v1/tx_grpc.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/systemtests/system.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ type SystemUnderTest struct {
4848
outputDir string
4949
testnetInitializer TestnetInitializer
5050

51-
// blockTime is the the expected/desired block time. This is not going to be very precise
51+
// blockTime is the expected/desired block time. This is not going to be very precise
5252
// since Tendermint consensus does not allow specifying it directly.
5353
blockTime time.Duration
5454
rpcAddr string

x/auth/ante/sigverify.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ type AccountAbstractionKeeper interface {
6464
// gas for signature verification.
6565
//
6666
// In cases where unordered or parallel transactions are desired, it is recommended
67-
// to to set unordered=true with a reasonable timeout_height value, in which case
67+
// to set unordered=true with a reasonable timeout_height value, in which case
6868
// this nonce verification and increment will be skipped.
6969
//
7070
// CONTRACT: Tx must implement SigVerifiableTx interface

x/circuit/keeper/msg_server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ func (srv msgServer) TripCircuitBreaker(ctx context.Context, msg *types.MsgTripC
134134
}
135135

136136
// ResetCircuitBreaker resumes processing of Msg's in the state machine that
137-
// have been been paused using TripCircuitBreaker.
137+
// have been paused using TripCircuitBreaker.
138138
func (srv msgServer) ResetCircuitBreaker(ctx context.Context, msg *types.MsgResetCircuitBreaker) (*types.MsgResetCircuitBreakerResponse, error) {
139139
keeper := srv.Keeper
140140
address, err := srv.addressCodec.StringToBytes(msg.Authority)

x/circuit/proto/cosmos/circuit/v1/tx.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ service Msg {
1818
rpc TripCircuitBreaker(MsgTripCircuitBreaker) returns (MsgTripCircuitBreakerResponse);
1919

2020
// ResetCircuitBreaker resumes processing of Msg's in the state machine that
21-
// have been been paused using TripCircuitBreaker.
21+
// have been paused using TripCircuitBreaker.
2222
rpc ResetCircuitBreaker(MsgResetCircuitBreaker) returns (MsgResetCircuitBreakerResponse);
2323
}
2424

x/circuit/types/tx.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x/simulation/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ To export the simulation app state (i.e genesis) to a file:
113113
114114
# Params
115115
116-
Params that are provided to simulation from a JSON file are used to used to set
116+
Params that are provided to simulation from a JSON file are used to set
117117
both module parameters and simulation parameters. See sim_test.go for the full
118118
set of parameters that can be provided.
119119
*/

0 commit comments

Comments
 (0)