Преглед изворни кода

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.