fix: correct minor typo in comments

This commit is contained in:
kibeom lee 2025-02-05 21:22:57 +09:00
parent 69eb59185a
commit 97bdd33534
3 changed files with 3 additions and 3 deletions

View File

@ -207,7 +207,7 @@ func wrapDesc(desc *Desc, prefix string, labels Labels) *Desc {
} }
// NewDesc will do remaining validations. // NewDesc will do remaining validations.
newDesc := NewDesc(prefix+desc.fqName, desc.help, desc.variableLabels, constLabels) newDesc := NewDesc(prefix+desc.fqName, desc.help, desc.variableLabels, constLabels)
// Propagate errors if there was any. This will override any errer // Propagate errors if there was any. This will override any error
// created by NewDesc above, i.e. earlier errors get precedence. // created by NewDesc above, i.e. earlier errors get precedence.
if desc.err != nil { if desc.err != nil {
newDesc.err = desc.err newDesc.err = desc.err

View File

@ -138,7 +138,7 @@ func (ln *LabelName) UnmarshalJSON(b []byte) error {
return nil return nil
} }
// LabelNames is a sortable LabelName slice. In implements sort.Interface. // LabelNames is a sortable LabelName slice. It implements sort.Interface.
type LabelNames []LabelName type LabelNames []LabelName
func (l LabelNames) Len() int { func (l LabelNames) Len() int {

View File

@ -85,7 +85,7 @@ func (f *FlagSet) CountP(name, shorthand string, usage string) *int {
// Count defines a count flag with specified name, default value, and usage string. // Count defines a count flag with specified name, default value, and usage string.
// The return value is the address of an int variable that stores the value of the flag. // The return value is the address of an int variable that stores the value of the flag.
// A count flag will add 1 to its value evey time it is found on the command line // A count flag will add 1 to its value every time it is found on the command line
func Count(name string, usage string) *int { func Count(name string, usage string) *int {
return CommandLine.CountP(name, "", usage) return CommandLine.CountP(name, "", usage)
} }