mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
fix typo in client/errors.go comments
Signed-off-by: Deng Guangxing <dengguangxing@huawei.com>
This commit is contained in:
parent
058556d7fc
commit
a68ba6be5d
1 changed files with 8 additions and 8 deletions
|
@ -30,7 +30,7 @@ type imageNotFoundError struct {
|
||||||
imageID string
|
imageID string
|
||||||
}
|
}
|
||||||
|
|
||||||
// NoFound indicates that this error type is of NotFound
|
// NotFound indicates that this error type is of NotFound
|
||||||
func (e imageNotFoundError) NotFound() bool {
|
func (e imageNotFoundError) NotFound() bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
@ -51,7 +51,7 @@ type containerNotFoundError struct {
|
||||||
containerID string
|
containerID string
|
||||||
}
|
}
|
||||||
|
|
||||||
// NoFound indicates that this error type is of NotFound
|
// NotFound indicates that this error type is of NotFound
|
||||||
func (e containerNotFoundError) NotFound() bool {
|
func (e containerNotFoundError) NotFound() bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
@ -72,7 +72,7 @@ type networkNotFoundError struct {
|
||||||
networkID string
|
networkID string
|
||||||
}
|
}
|
||||||
|
|
||||||
// NoFound indicates that this error type is of NotFound
|
// NotFound indicates that this error type is of NotFound
|
||||||
func (e networkNotFoundError) NotFound() bool {
|
func (e networkNotFoundError) NotFound() bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
@ -93,12 +93,12 @@ type volumeNotFoundError struct {
|
||||||
volumeID string
|
volumeID string
|
||||||
}
|
}
|
||||||
|
|
||||||
// NoFound indicates that this error type is of NotFound
|
// NotFound indicates that this error type is of NotFound
|
||||||
func (e volumeNotFoundError) NotFound() bool {
|
func (e volumeNotFoundError) NotFound() bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
// Error returns a string representation of a networkNotFoundError
|
// Error returns a string representation of a volumeNotFoundError
|
||||||
func (e volumeNotFoundError) Error() string {
|
func (e volumeNotFoundError) Error() string {
|
||||||
return fmt.Sprintf("Error: No such volume: %s", e.volumeID)
|
return fmt.Sprintf("Error: No such volume: %s", e.volumeID)
|
||||||
}
|
}
|
||||||
|
@ -136,7 +136,7 @@ func (e nodeNotFoundError) Error() string {
|
||||||
return fmt.Sprintf("Error: No such node: %s", e.nodeID)
|
return fmt.Sprintf("Error: No such node: %s", e.nodeID)
|
||||||
}
|
}
|
||||||
|
|
||||||
// NoFound indicates that this error type is of NotFound
|
// NotFound indicates that this error type is of NotFound
|
||||||
func (e nodeNotFoundError) NotFound() bool {
|
func (e nodeNotFoundError) NotFound() bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
@ -158,7 +158,7 @@ func (e serviceNotFoundError) Error() string {
|
||||||
return fmt.Sprintf("Error: No such service: %s", e.serviceID)
|
return fmt.Sprintf("Error: No such service: %s", e.serviceID)
|
||||||
}
|
}
|
||||||
|
|
||||||
// NoFound indicates that this error type is of NotFound
|
// NotFound indicates that this error type is of NotFound
|
||||||
func (e serviceNotFoundError) NotFound() bool {
|
func (e serviceNotFoundError) NotFound() bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
@ -180,7 +180,7 @@ func (e taskNotFoundError) Error() string {
|
||||||
return fmt.Sprintf("Error: No such task: %s", e.taskID)
|
return fmt.Sprintf("Error: No such task: %s", e.taskID)
|
||||||
}
|
}
|
||||||
|
|
||||||
// NoFound indicates that this error type is of NotFound
|
// NotFound indicates that this error type is of NotFound
|
||||||
func (e taskNotFoundError) NotFound() bool {
|
func (e taskNotFoundError) NotFound() bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue