Skip to content

Commit

Permalink
Fix typos in comments (#4553)
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlieTLe committed Sep 26, 2023
1 parent 2a8fdda commit 612208d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion exporters/prometheus/config_test.go
Expand Up @@ -151,7 +151,7 @@ func TestNewConfig(t *testing.T) {
for _, tt := range testCases {
t.Run(tt.name, func(t *testing.T) {
cfg := newConfig(tt.options...)
// only check the length of readerOpts, since they are not compareable
// only check the length of readerOpts, since they are not comparable
assert.Equal(t, len(tt.wantConfig.readerOpts), len(cfg.readerOpts))
cfg.readerOpts = nil
tt.wantConfig.readerOpts = nil
Expand Down
2 changes: 1 addition & 1 deletion sdk/metric/reader.go
Expand Up @@ -74,7 +74,7 @@ type Reader interface {
// the SDK and stores it in out. An error is returned if this is called
// after Shutdown or if out is nil.
//
// This method needs to be concurrent safe, and the cancelation of the
// This method needs to be concurrent safe, and the cancellation of the
// passed context is expected to be honored.
Collect(ctx context.Context, rm *metricdata.ResourceMetrics) error
// DO NOT CHANGE: any modification will not be backwards compatible and
Expand Down

0 comments on commit 612208d

Please sign in to comment.