From 8788af7f8d26aab8a2b6a083df74ea6c250218c9 Mon Sep 17 00:00:00 2001 From: chentanjun <2799194073@qq.com> Date: Wed, 4 Sep 2019 21:43:00 +0800 Subject: [PATCH] modify-document-duplicate-word Signed-off-by: chentanjun <2799194073@qq.com> --- oci/spec_test.go | 2 +- platforms/database.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/oci/spec_test.go b/oci/spec_test.go index 7e04b960e..364734927 100644 --- a/oci/spec_test.go +++ b/oci/spec_test.go @@ -63,7 +63,7 @@ func TestGenerateSpec(t *testing.T) { } } else { if s.Windows == nil { - t.Fatal("Windows section of spec not filled on on Windows platform") + t.Fatal("Windows section of spec not filled in on Windows platform") } } diff --git a/platforms/database.go b/platforms/database.go index 8e85448ed..3a312cff6 100644 --- a/platforms/database.go +++ b/platforms/database.go @@ -28,7 +28,7 @@ func isLinuxOS(os string) bool { return os == "linux" } -// These function are generated from from https://golang.org/src/go/build/syslist.go. +// These function are generated from https://golang.org/src/go/build/syslist.go. // // We use switch statements because they are slightly faster than map lookups // and use a little less memory.