mirror of
https://github.com/pion/webrtc.git
synced 2025-12-24 11:51:03 +08:00
Fix misspelled error types
ErrNoTurnCredencials => ErrNoTurnCredentials ErrTurnCredencials => ErrTurnCredentials
This commit is contained in:
committed by
Sean DuBois
parent
d0ec72397e
commit
27f93a7f3d
@@ -19,13 +19,13 @@ var (
|
||||
// ErrCertificateExpired indicates that an x509 certificate has expired.
|
||||
ErrCertificateExpired = errors.New("x509Cert expired")
|
||||
|
||||
// ErrNoTurnCredencials indicates that a TURN server URL was provided
|
||||
// ErrNoTurnCredentials indicates that a TURN server URL was provided
|
||||
// without required credentials.
|
||||
ErrNoTurnCredencials = errors.New("turn server credentials required")
|
||||
ErrNoTurnCredentials = errors.New("turn server credentials required")
|
||||
|
||||
// ErrTurnCredencials indicates that provided TURN credentials are partial
|
||||
// ErrTurnCredentials indicates that provided TURN credentials are partial
|
||||
// or malformed.
|
||||
ErrTurnCredencials = errors.New("invalid turn server credentials")
|
||||
ErrTurnCredentials = errors.New("invalid turn server credentials")
|
||||
|
||||
// ErrExistingTrack indicates that a track already exists.
|
||||
ErrExistingTrack = errors.New("track already exists")
|
||||
|
||||
Reference in New Issue
Block a user