Fix incorrect comment

This commit is contained in:
Preetha Appan
2018-03-13 18:25:41 -05:00
parent d83ad728db
commit a6ec63d35f

View File

@@ -6159,8 +6159,8 @@ func (r *WrappedServerError) IsServerSide() bool {
return true
}
// Recoverable is an interface for errors to implement to indicate whether or
// not they are fatal or recoverable.
// ServerSideError is an interface for errors to implement to indicate
// errors occuring after the request makes it to a server
type ServerSideError interface {
error
IsServerSide() bool