1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #38219 from gowalking/master

Fix a typos in layer_windows.go
This commit is contained in:
Yong Tang 2018-11-19 20:22:29 -08:00 committed by GitHub
commit 6c51d0707d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)
}