mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix sanbox typo
Change "sanbox" to "sandbox". Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
This commit is contained in:
parent
d82e80e221
commit
91e8d5bfb9
2 changed files with 2 additions and 2 deletions
|
@ -88,7 +88,7 @@ type extraHost struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// sandboxParentUpdate is the object carrying the information about the
|
// sandboxParentUpdate is the object carrying the information about the
|
||||||
// sanbox parent that needs to be updated
|
// sandbox parent that needs to be updated.
|
||||||
type sandboxParentUpdate struct {
|
type sandboxParentUpdate struct {
|
||||||
ContainerID string `json:"container_id"`
|
ContainerID string `json:"container_id"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
|
|
|
@ -183,7 +183,7 @@ func (ieie InvalidEndpointIDError) BadRequest() {}
|
||||||
type InvalidSandboxIDError string
|
type InvalidSandboxIDError string
|
||||||
|
|
||||||
func (isie InvalidSandboxIDError) Error() string {
|
func (isie InvalidSandboxIDError) Error() string {
|
||||||
return fmt.Sprintf("invalid sanbox id: %s", string(isie))
|
return fmt.Sprintf("invalid sandbox id: %s", string(isie))
|
||||||
}
|
}
|
||||||
|
|
||||||
// BadRequest denotes the type of this error
|
// BadRequest denotes the type of this error
|
||||||
|
|
Loading…
Reference in a new issue