Skip to content

Commit

Permalink
chore: remove repetitive words (#7036)
Browse files Browse the repository at this point in the history
  • Loading branch information
yetyear committed Mar 13, 2024
1 parent 7c37770 commit 4f43d2e
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion balancer/leastrequest/balancer_test.go
Expand Up @@ -170,7 +170,7 @@ func checkRoundRobinRPCs(ctx context.Context, client testgrpc.TestServiceClient,
}
iterations = append(iterations, iteration)
}
// Ensure the the first iteration contains all addresses in addrs.
// Ensure the first iteration contains all addresses in addrs.
for _, addr := range iterations[0] {
gotAddrCount[addr]++
}
Expand Down
2 changes: 1 addition & 1 deletion balancer/weightedroundrobin/scheduler.go
Expand Up @@ -125,7 +125,7 @@ func (s *edfScheduler) nextIndex() int {
}

// A simple RR scheduler to use for fallback when fewer than two backends have
// non-zero weights, or all backends have the the same weight, or when only one
// non-zero weights, or all backends have the same weight, or when only one
// subconn exists.
type rrScheduler struct {
inc func() uint32
Expand Down
2 changes: 1 addition & 1 deletion clientconn.go
Expand Up @@ -67,7 +67,7 @@ var (
errConnDrain = errors.New("grpc: the connection is drained")
// errConnClosing indicates that the connection is closing.
errConnClosing = errors.New("grpc: the connection is closing")
// errConnIdling indicates the the connection is being closed as the channel
// errConnIdling indicates the connection is being closed as the channel
// is moving to an idle mode due to inactivity.
errConnIdling = errors.New("grpc: the connection is closing due to channel idleness")
// invalidDefaultServiceConfigErrPrefix is used to prefix the json parsing error for the default
Expand Down
2 changes: 1 addition & 1 deletion examples/features/observability/client/main.go
Expand Up @@ -43,7 +43,7 @@ var (
func main() {
// Turn on global telemetry for the whole binary. If a configuration is
// specified, any created gRPC Client Conn's or Servers will emit telemetry
// data according the the configuration.
// data according the configuration.
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
defer cancel()
err := observability.Start(ctx)
Expand Down
2 changes: 1 addition & 1 deletion examples/features/observability/server/main.go
Expand Up @@ -53,7 +53,7 @@ func (s *server) SayHello(ctx context.Context, in *pb.HelloRequest) (*pb.HelloRe
func main() {
// Turn on global telemetry for the whole binary. If a configuration is
// specified, any created gRPC Client Conn's or Servers will emit telemetry
// data according the the configuration.
// data according the configuration.
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
defer cancel()
err := observability.Start(ctx)
Expand Down
2 changes: 1 addition & 1 deletion test/authority_test.go
Expand Up @@ -210,7 +210,7 @@ func (s) TestColonPortAuthority(t *testing.T) {
}

// TestAuthorityReplacedWithResolverAddress tests the scenario where the resolver
// returned address contains a ServerName override. The test verifies that the the
// returned address contains a ServerName override. The test verifies that the
// :authority header value sent to the server as part of the http/2 HEADERS frame
// is set to the value specified in the resolver returned address.
func (s) TestAuthorityReplacedWithResolverAddress(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion test/xds/xds_client_outlier_detection_test.go
Expand Up @@ -136,7 +136,7 @@ func checkRoundRobinRPCs(ctx context.Context, client testgrpc.TestServiceClient,
}
iterations = append(iterations, iteration)
}
// Ensure the the first iteration contains all addresses in addrs.
// Ensure the first iteration contains all addresses in addrs.
gotAddrCount := make(map[string]int)
for _, addr := range iterations[0] {
gotAddrCount[addr]++
Expand Down
Expand Up @@ -123,7 +123,7 @@ func checkRoundRobinRPCs(ctx context.Context, client testgrpc.TestServiceClient,
}
iterations = append(iterations, iteration)
}
// Ensure the the first iteration contains all addresses in addrs.
// Ensure the first iteration contains all addresses in addrs.
for _, addr := range iterations[0] {
gotAddrCount[addr]++
}
Expand Down

0 comments on commit 4f43d2e

Please sign in to comment.