Skip to content

Commit

Permalink
fix code typo
Browse files Browse the repository at this point in the history
Signed-off-by: zhoulin xie <zhoulin.xie@daocloud.io>
  • Loading branch information
JoeWrightss committed Jan 11, 2019
1 parent f76d6a0 commit 89e3a4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion container/view.go
Expand Up @@ -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
Expand Down

0 comments on commit 89e3a4a

Please sign in to comment.