Skip to content

Commit

Permalink
Fix copy-paste error for noop SDK AsyncInstrument (#2376)
Browse files Browse the repository at this point in the history
  • Loading branch information
evantorrie committed Nov 11, 2021
1 parent 249accd commit 3b9e067
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions metric/sdkapi/noop.go
Expand Up @@ -38,8 +38,8 @@ func NewNoopSyncInstrument() SyncImpl {

// NewNoopAsyncInstrument returns a No-op implementation of the
// asynchronous instrument interface.
func NewNoopAsyncInstrument() SyncImpl {
return noopSyncInstrument{}
func NewNoopAsyncInstrument() AsyncImpl {
return noopAsyncInstrument{}
}

func (noopInstrument) Implementation() interface{} {
Expand Down

0 comments on commit 3b9e067

Please sign in to comment.