docs: grammar improvements (#673)

* lint: pin golangci-lint version

* docs: grammar fixes

* docs: remove "truthy" terminology

* docs: remove "array" terminology

* docs: grammar fixes

* Update .github/workflows/lint.yml

---------

Co-authored-by: Samuel Berthe <dev@samuel-berthe.fr>
This commit is contained in:
Nathan Baulch
2025-09-25 04:59:41 +10:00
committed by GitHub
parent 7e6d6e0673
commit 3e11f11781
22 changed files with 314 additions and 314 deletions

View File

@@ -73,7 +73,7 @@ func Must0(err any, messageArgs ...any) {
must(err, messageArgs...)
}
// Must1 is an alias to Must
// Must1 is an alias to Must.
// Play: https://go.dev/play/p/TMoWrRp3DyC
func Must1[T any](val T, err any, messageArgs ...any) T {
return Must(val, err, messageArgs...)