فهرست منبع

Match not implemented error check to others

Signed-off-by: Christopher Crone <christopher.crone@docker.com>
Christopher Crone 7 سال پیش
والد
کامیت
7406088853
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      client/errors.go

+ 2 - 2
client/errors.go

@@ -171,10 +171,10 @@ func (e notImplementedError) NotImplemented() bool {
 	return true
 }
 
-// IsNotImplementedError returns true if the error is a NotImplemented error.
+// IsErrNotImplemented returns true if the error is a NotImplemented error.
 // This is returned by the API when a requested feature has not been
 // implemented.
-func IsNotImplementedError(err error) bool {
+func IsErrNotImplemented(err error) bool {
 	te, ok := err.(notImplementedError)
 	return ok && te.NotImplemented()
 }