Fix grammar typo in comment

Overriding is the incorrect part of speech for this sentence. It is more common to state that the values are overridden instead.

Other options would include:

```golang
// ldflags is overriding these values
```

```golang
// These values will be overridden by ldflags
```

etc.

Signed-off-by: Kevin Kirsche <kevin.kirsche@verizon.com>
This commit is contained in:
Kevin Kirsche 2018-02-28 11:24:19 -05:00 committed by Kevin Kirsche
parent c19b272c09
commit 0e2fdc92ce
No known key found for this signature in database
GPG Key ID: 393EBC12FB692E13
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
package cli
// Default build-time variable.
// These values are overriding via ldflags
// These values are overridden via ldflags
var (
PlatformName = ""
Version = "unknown-version"