浏览代码

Fix function description typo

Signed-off-by: Christopher Crone <[email protected]>
Christopher Crone 5 年之前
父节点
当前提交
144ee29645
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      context/store/store.go

+ 1 - 1
context/store/store.go

@@ -63,7 +63,7 @@ type Store interface {
 	// Get returns the context with name, it returns an error if the  context
 	// doesn't exist
 	Get(name string, getter func() interface{}) (*Metadata, error)
-	// GetType reurns the type of the context (docker, aci etc)
+	// GetType returns the type of the context (docker, aci etc)
 	GetType(meta *Metadata) string
 	// Create creates a new context, it returns an error if a context with the
 	// same name exists already.