Browse code

Fix a typos in layer_windows.go

Signed-off-by: zhenhai gao <gaozh1988@live.com>

zhenhai gao authored on 2018/11/18 14:41:53
Showing 1 changed files
... ...
@@ -7,7 +7,7 @@ import (
7 7
 // Getter is an interface to get the path to a layer on the host.
8 8
 type Getter interface {
9 9
 	// GetLayerPath gets the path for the layer. This is different from Get()
10
-	// since that returns an interface to account for umountable layers.
10
+	// since that returns an interface to account for unmountable layers.
11 11
 	GetLayerPath(id string) (string, error)
12 12
 }
13 13