From 7c5cf583280aad6f38311e88d58d7aaec0bfa90e Mon Sep 17 00:00:00 2001 From: zhenhai gao Date: Sun, 18 Nov 2018 13:41:53 +0800 Subject: [PATCH] Fix a typos in layer_windows.go Signed-off-by: zhenhai gao --- layer/layer_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layer/layer_windows.go b/layer/layer_windows.go index 25ef26afc1..3d079a9af6 100644 --- a/layer/layer_windows.go +++ b/layer/layer_windows.go @@ -7,7 +7,7 @@ import ( // Getter is an interface to get the path to a layer on the host. type Getter interface { // GetLayerPath gets the path for the layer. This is different from Get() - // since that returns an interface to account for umountable layers. + // since that returns an interface to account for unmountable layers. GetLayerPath(id string) (string, error) }