From bacee82557fbd3df437254aab4a5684654e421b0 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 3 Sep 2015 09:50:50 -0700 Subject: [PATCH] runtime_config: Replace 'MountPoints in Spec' with 'Spec.Mounts' I think Go's attribute syntax reads more clearly here, especially since there is no 'Spec.MountPoints' after c18c283a (Change layout of mountpoints and mounts, 2015-09-02, #136). Signed-off-by: W. Trevor King --- runtime_config.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/runtime_config.go b/runtime_config.go index 6418f0109..db52aa2d2 100644 --- a/runtime_config.go +++ b/runtime_config.go @@ -2,8 +2,7 @@ package specs type RuntimeSpec struct { // Mounts is a mapping of names to mount configurations. - // Which mounts will be mounted and where should be chosen with MountPoints - // in Spec. + // Which mounts will be mounted and where should be chosen with Spec.Mounts. Mounts map[string]Mount `json:"mounts"` // Hooks are the commands run at various lifecycle events of the container. Hooks Hooks `json:"hooks"`