From cc8a99757d600ac2963889a2037d2dbaaad861b1 Mon Sep 17 00:00:00 2001 From: Alexander Morozov Date: Mon, 31 Aug 2015 13:37:20 -0700 Subject: [PATCH] Fix LinuxRuntime field Signed-off-by: Alexander Morozov --- runtime_config_linux.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime_config_linux.go b/runtime_config_linux.go index 7a8b4953c..5c51f5380 100644 --- a/runtime_config_linux.go +++ b/runtime_config_linux.go @@ -5,8 +5,8 @@ import "os" // LinuxRuntimeSpec is the full specification for linux containers. type LinuxRuntimeSpec struct { RuntimeSpec - // Linux is platform specific configuration for linux based containers. - LinuxRuntime Linux `json:"linux"` + // LinuxRuntime is platform specific configuration for linux based containers. + Linux LinuxRuntime `json:"linux"` } type LinuxRuntime struct {