Merge pull request #40532 from MHBauer/log-typo

Automatic merge from submit-queue

fix typo in logging statement

**What this PR does / why we need it**:
Typo fix in logs. I am writing an apiserver for service-catalog, and this annoys me when I see it in my logs.

**Special notes for your reviewer**:
Doc/text change only. No functional change. Feel free to combine with some existing PR.

**Release note**:

```release-note
NONE
```
pull/6/head
Kubernetes Submit Queue 2017-01-29 18:36:30 -08:00 committed by GitHub
commit 66bea1f86c
1 changed files with 1 additions and 1 deletions

View File

@ -809,7 +809,7 @@ func (e *Store) Delete(ctx genericapirequest.Context, name string, options *meta
}
// delete immediately, or no graceful deletion supported
glog.V(6).Infof("going to delete %s from regitry: ", name)
glog.V(6).Infof("going to delete %s from registry: ", name)
out = e.NewFunc()
if err := e.Storage.Delete(ctx, key, out, &preconditions); err != nil {
// Please refer to the place where we set ignoreNotFound for the reason