From 144ee29645ca80a98892f7a06449ec0b2201b115 Mon Sep 17 00:00:00 2001 From: Christopher Crone Date: Mon, 11 May 2020 15:49:14 +0200 Subject: [PATCH] Fix function description typo Signed-off-by: Christopher Crone --- context/store/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context/store/store.go b/context/store/store.go index 22f8fc656..b20400666 100644 --- a/context/store/store.go +++ b/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.