Small typos in consumererror (#2933)

Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
This commit is contained in:
Bogdan Drutu 2021-04-14 17:55:09 -04:00 committed by GitHub
parent 0f75efa9f3
commit 8235b261e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ import (
)
// Traces is an error that may carry associated Trace data for a subset of received data
// that faiiled to be processed or sent.
// that failed to be processed or sent.
type Traces struct {
error
failed pdata.Traces
@ -50,7 +50,7 @@ func (err Traces) GetTraces() pdata.Traces {
}
// Logs is an error that may carry associated Log data for a subset of received data
// that faiiled to be processed or sent.
// that failed to be processed or sent.
type Logs struct {
error
failed pdata.Logs
@ -79,7 +79,7 @@ func (err Logs) GetLogs() pdata.Logs {
}
// Metrics is an error that may carry associated Metrics data for a subset of received data
// that faiiled to be processed or sent.
// that failed to be processed or sent.
type Metrics struct {
error
failed pdata.Metrics