From 198e2771ac3fe4cde113251014b095ba8304b4e5 Mon Sep 17 00:00:00 2001 From: Zhao Lei Date: Fri, 20 May 2016 18:47:29 +0800 Subject: [PATCH] Fix outdated comment for loadSpec loadSpec() is not support blank path now, remove relative comments. Signed-off-by: Zhao Lei --- spec.go | 1 - 1 file changed, 1 deletion(-) diff --git a/spec.go b/spec.go index d4da3a553..ae6b3d757 100644 --- a/spec.go +++ b/spec.go @@ -224,7 +224,6 @@ func u32Ptr(i int64) *uint32 { u := uint32(i); return &u } func fmPtr(i int64) *os.FileMode { fm := os.FileMode(i); return &fm } // loadSpec loads the specification from the provided path. -// If the path is empty then the default path will be "config.json" func loadSpec(cPath string) (spec *specs.Spec, err error) { cf, err := os.Open(cPath) if err != nil {