From 0e2fdc92ce45d893a0ffb807668574f1575d6c92 Mon Sep 17 00:00:00 2001 From: Kevin Kirsche Date: Wed, 28 Feb 2018 11:24:19 -0500 Subject: [PATCH] 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 --- cli/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/version.go b/cli/version.go index 91c9ae1878..c4120b9585 100644 --- a/cli/version.go +++ b/cli/version.go @@ -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"