1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-11-25 22:41:46 +02:00
This commit is contained in:
Tyler Yahn
2020-05-29 15:49:58 -07:00
parent 559606c419
commit ec6512f656
5 changed files with 8 additions and 6 deletions

View File

@@ -17,6 +17,6 @@ package oterror
import "errors"
var (
// SDKReturnedNilImpl is returned when a new `MeterImpl` returns nil.
SDKReturnedNilImpl = errors.New("SDK returned a nil implementation")
// ErrSDKReturnedNilImpl is returned when a new `MeterImpl` returns nil.
ErrSDKReturnedNilImpl = errors.New("SDK returned a nil implementation")
)