From 17fa573e059512d1107d16683e8c9c8d1bbfb05a Mon Sep 17 00:00:00 2001 From: Jin Hase Date: Wed, 25 Dec 2019 17:05:32 +0900 Subject: [PATCH 1/2] Add simple explanation to verify-golint.sh --- hack/verify-golint.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hack/verify-golint.sh b/hack/verify-golint.sh index a398cb6f3f5..6f55dff331c 100755 --- a/hack/verify-golint.sh +++ b/hack/verify-golint.sh @@ -14,6 +14,10 @@ # See the License for the specific language governing permissions and # limitations under the License. +# This sciprt checks cording style for go language files in each +# Kubernetes package by golint. +# Usage: hack/verify-golint.sh + set -o errexit set -o nounset set -o pipefail From 75b716a352634b589f009c4e999c013cc799557e Mon Sep 17 00:00:00 2001 From: Jin Hase Date: Wed, 25 Dec 2019 17:09:27 +0900 Subject: [PATCH 2/2] Fix simple typos --- hack/verify-golint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/verify-golint.sh b/hack/verify-golint.sh index 6f55dff331c..1b1f1bbac58 100755 --- a/hack/verify-golint.sh +++ b/hack/verify-golint.sh @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -# This sciprt checks cording style for go language files in each +# This script checks coding style for go language files in each # Kubernetes package by golint. # Usage: hack/verify-golint.sh