diff --git a/README.md b/README.md index 4ab46e96..e4f32607 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ Download the pre-compiled binaries from the [releases page](https://github.com/o ## Building from Source -Make sure you have Go 1.20 or later installed. See the [Go downloads](https://go.dev/dl/) page. +Make sure you have Go 1.25 or later installed. See the [Go downloads](https://go.dev/dl/) page. 1. Clone the repo to a local directory, and navigate to that directory: diff --git a/internal/cmdutils/cmdutils.go b/internal/cmdutils/cmdutils.go index 5ac4719c..8f75d554 100644 --- a/internal/cmdutils/cmdutils.go +++ b/internal/cmdutils/cmdutils.go @@ -14,6 +14,6 @@ See the License for the specific language governing permissions and limitations under the License. */ -// Package cmdutils contains utility and common functions that interaction with the input +// Package cmdutils contains utility and common functions that interact with the input // such as reading or binding flags package cmdutils diff --git a/internal/storetest/testresult.go b/internal/storetest/testresult.go index 62a55add..5a7c6de1 100644 --- a/internal/storetest/testresult.go +++ b/internal/storetest/testresult.go @@ -261,7 +261,7 @@ func buildTestResultOutput(result TestResult, totalCheckCount int, failedCheckCo } if totalListUsersCount > 0 { - output += fmt.Sprintf("ListUsers(%d/%d passing)", + output += fmt.Sprintf("ListUsers (%d/%d passing)", totalListUsersCount-failedListUsersCount, totalListUsersCount) }