Merge pull request #43373 from supereagle/fix-typos

Automatic merge from submit-queue (batch tested with PRs 43373, 41780, 44141, 43914, 44180)

fix some typos in apiserver

**What this PR does / why we need it**:

**Which issue this PR fixes**: 

**Special notes for your reviewer**:

**Release note**:

```release-note
```
pull/6/head
Kubernetes Submit Queue 2017-04-07 09:57:35 -07:00 committed by GitHub
commit 9095c78f14
1 changed files with 2 additions and 2 deletions

View File

@ -50,9 +50,9 @@ type APIInstaller struct {
minRequestTimeout time.Duration 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 { 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 Path string // The path of the action
Params []*restful.Parameter // List of parameters associated with the action. Params []*restful.Parameter // List of parameters associated with the action.
Namer handlers.ScopeNamer Namer handlers.ScopeNamer