Merge pull request #6906 from markturansky/typos

Fixed typos in comments
pull/6/head
Wojciech Tyczynski 2015-04-16 15:55:07 +02:00
commit 0b414499bc
1 changed files with 2 additions and 2 deletions

View File

@ -128,7 +128,7 @@ func (f *FakeControllerSource) List() (runtime.Object, error) {
for _, obj := range f.items {
// Must make a copy to allow clients to modify the object.
// Otherwise, if they make a change and write it back, they
// will inadvertantly change the our canonical copy (in
// will inadvertently change the our canonical copy (in
// addition to racing with other clients).
objCopy, err := conversion.DeepCopy(obj)
if err != nil {
@ -164,7 +164,7 @@ func (f *FakeControllerSource) Watch(resourceVersion string) (watch.Interface, e
for _, c := range f.changes[rc:] {
// Must make a copy to allow clients to modify the
// object. Otherwise, if they make a change and write
// it back, they will inadvertantly change the our
// it back, they will inadvertently change the our
// canonical copy (in addition to racing with other
// clients).
objCopy, err := conversion.DeepCopy(c.Object)