From 180bed7b5c65ac4ea5fb120b0ea24d107ed5c26d Mon Sep 17 00:00:00 2001 From: Paul Morie Date: Tue, 2 Feb 2016 15:39:33 -0500 Subject: [PATCH] Fix a couple typos --- pkg/volume/volume.go | 2 +- third_party/golang/expansion/expand.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/volume/volume.go b/pkg/volume/volume.go index 9a851c32cd..6a7c039b4b 100644 --- a/pkg/volume/volume.go +++ b/pkg/volume/volume.go @@ -81,7 +81,7 @@ type Builder interface { // 'fsGroup' so that it can be accessed by the pod. This may // be called more than once, so implementations must be // idempotent. - SetUpAt(dir string, sGroup *int64) error + SetUpAt(dir string, fsGroup *int64) error // GetAttributes returns the attributes of the builder. GetAttributes() Attributes } diff --git a/third_party/golang/expansion/expand.go b/third_party/golang/expansion/expand.go index ccec3e9eca..6bf0ea8ce0 100644 --- a/third_party/golang/expansion/expand.go +++ b/third_party/golang/expansion/expand.go @@ -10,7 +10,7 @@ const ( referenceCloser = ')' ) -// syntaxWrap returns the input string wrapped the expansion syntax. +// syntaxWrap returns the input string wrapped by the expansion syntax. func syntaxWrap(input string) string { return string(operator) + string(referenceOpener) + input + string(referenceCloser) }