mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
fix code typo
Signed-off-by: zhoulin xie <zhoulin.xie@daocloud.io>
This commit is contained in:
parent
f76d6a078d
commit
89e3a4af62
1 changed files with 1 additions and 1 deletions
|
@ -473,7 +473,7 @@ type namesByContainerIDIndexer struct{}
|
|||
func (e *namesByContainerIDIndexer) FromObject(obj interface{}) (bool, []byte, error) {
|
||||
n, ok := obj.(nameAssociation)
|
||||
if !ok {
|
||||
return false, nil, fmt.Errorf(`%T does not have type "nameAssocation"`, obj)
|
||||
return false, nil, fmt.Errorf(`%T does not have type "nameAssociation"`, obj)
|
||||
}
|
||||
|
||||
// Add the null character as a terminator
|
||||
|
|
Loading…
Add table
Reference in a new issue