Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Comment thread
SoulPancake marked this conversation as resolved.

1. Clone the repo to a local directory, and navigate to that directory:

Expand Down
2 changes: 1 addition & 1 deletion internal/cmdutils/cmdutils.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion internal/storetest/testresult.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down
Loading