Skip to content

Commit ef07766

Browse files
cuishuanggopherbot
authored andcommitted
all: remove the repetitive word
Change-Id: I9ec730f3db878a0e6de38b5b513b4d1ce8182eff Reviewed-on: https://go-review.googlesource.com/c/build/+/537835 Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: Carlos Amedee <[email protected]> Run-TryBot: shuang cui <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]>
1 parent 88128dd commit ef07766

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

cmd/buildlet/buildlet.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ func defaultListenAddr() string {
9696
// root).
9797
return ":5936"
9898
}
99-
// check if if env is dev
99+
// check if env is dev
100100
if !metadata.OnGCE() && !onEC2() {
101101
return "localhost:5936"
102102
}

cmd/gerritbot/internal/rules/rules.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
// messages for the Go project, see [here](...).
3434
//
3535
// Rules currently err on the side of simplicity and avoiding false positives.
36-
// It is is intended to be straightforward to add a new rule.
36+
// It is intended to be straightforward to add a new rule.
3737
//
3838
// Rules can be arranged to trigger completely independently of one another,
3939
// or alternatively a set of rules can optionally be arranged in groups that

cmd/golangbuild/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# golang.org/x/build/cmd/golangbuild
22

3-
`golangbuild` is a a [LUCI Executable](https://pkg.go.dev/go.chromium.org/luci/luciexe) ("luciexe") binary that builds and tests the code for the Go project. Its current code location is:
3+
`golangbuild` is a [LUCI Executable](https://pkg.go.dev/go.chromium.org/luci/luciexe) ("luciexe") binary that builds and tests the code for the Go project. Its current code location is:
44

55
https://source.chromium.org/chromium/infra/infra/+/main:go/src/infra/experimental/golangbuild

dashboard/builders_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1078,7 +1078,7 @@ func TestTryBotsCompileAllPorts(t *testing.T) {
10781078
// The 'linux-arm-arm5' pseduo-port is supported by src/buildall.bash
10791079
// and tests linux/arm with GOARM=5 set. Since it's not a normal port,
10801080
// the TestTryBotsCompileAllPorts wouldn't report if the misc-compile
1081-
// TryBot that covers is is accidentally removed. Check it explicitly.
1081+
// TryBot that covers is accidentally removed. Check it explicitly.
10821082
func TestMiscCompileLinuxGOARM5(t *testing.T) {
10831083
for _, b := range Builders {
10841084
if !strings.HasPrefix(b.Name, "misc-compile-") {

internal/workflow/workflow_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ func TestParameters(t *testing.T) {
207207
func TestParameterValue(t *testing.T) {
208208
var p interface{} = wf.ParamDef[int]{}
209209
if _, ok := p.(wf.Value[int]); ok {
210-
t.Errorf("Parameter unexpectedly implements Value; it intentionally tries not to to reduce possible API misuse")
210+
t.Errorf("Parameter unexpectedly implements Value; it intentionally tries not to reduce possible API misuse")
211211
}
212212
}
213213

perf/app/dashboard/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ <h2 class="Dashboard-title" id="loading">Loading...</h2>
112112
// This constant exists because allowing the axis' range to be arbitrarily
113113
// small produces results that are really noisy visually, even though they
114114
// represent virtually no change. For instance, a relatively low-noise
115-
// series of benchmark results, with a min delta of -0.05% and and +0.05%
115+
// series of benchmark results, with a min delta of -0.05% and +0.05%
116116
// might appear really noisy if we "zoom" in too far, when in actuality
117117
// the amount of noise is incredibly low.
118118
const minViewDeltaPercent = 0.025;

0 commit comments

Comments
 (0)