From e35b7d10821bc2c7b4b59e1da3808d46356be69d Mon Sep 17 00:00:00 2001 From: supereagle Date: Mon, 20 Mar 2017 17:11:19 +0800 Subject: [PATCH] fix some typos in apiserver --- staging/src/k8s.io/apiserver/pkg/endpoints/installer.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/staging/src/k8s.io/apiserver/pkg/endpoints/installer.go b/staging/src/k8s.io/apiserver/pkg/endpoints/installer.go index c4d26d4189..14c95fe6dc 100644 --- a/staging/src/k8s.io/apiserver/pkg/endpoints/installer.go +++ b/staging/src/k8s.io/apiserver/pkg/endpoints/installer.go @@ -50,9 +50,9 @@ type APIInstaller struct { minRequestTimeout time.Duration } -// Struct capturing information about an action ("GET", "POST", "WATCH", PROXY", etc). +// Struct capturing information about an action ("GET", "POST", "WATCH", "PROXY", etc). type action struct { - Verb string // Verb identifying the action ("GET", "POST", "WATCH", PROXY", etc). + Verb string // Verb identifying the action ("GET", "POST", "WATCH", "PROXY", etc). Path string // The path of the action Params []*restful.Parameter // List of parameters associated with the action. Namer handlers.ScopeNamer