Skip to content

Commit 8ffc224

Browse files
authored
Merge pull request kubernetes-sigs#169 from xichengliudui/fix181102
Fix typo delete ‘a’
2 parents 200a3e5 + acc259c commit 8ffc224

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/manager/manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131

3232
var (
3333
// initialized below to an actual value by a call to RegisterTickDuration
34-
// (acts a a no-op by default), but we can't just register it in the constructor,
34+
// (acts as a no-op by default), but we can't just register it in the constructor,
3535
// since it could be called multiple times during setup.
3636
tickDuration prometheus.Histogram = prometheus.NewHistogram(prometheus.HistogramOpts{})
3737
)

pkg/sources/manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ var (
4444
)
4545

4646
// initialized below to an actual value by a call to RegisterScraperDuration
47-
// (acts a a no-op by default), but we can't just register it in the constructor,
47+
// (acts as a no-op by default), but we can't just register it in the constructor,
4848
// since it could be called multiple times during setup.
4949
scraperDuration *prometheus.HistogramVec = prometheus.NewHistogramVec(prometheus.HistogramOpts{}, []string{"source"})
5050
)

0 commit comments

Comments
 (0)