go-graphite / carbonapi

Confusing naming of struct fields or methods RVV-B0001
Bug risk
Minor
1 occurrence in this check
Method 'GetNamedArg' differs only by capitalization to method 'getNamedArg' in /home/runner/go/src/github.com/go-graphite/carbonapi/pkg/parser/internal.go
505	return e.GetIntOrInfArgDefault(n, d)
506}
507
508func (e *expr) GetNamedArg(name string) Expr {509	return e.getNamedArg(name)
510}
511