Fix typos in godocs

This commit is contained in:
Grant Murphy 2016-08-28 11:22:08 -07:00
parent bb42840644
commit 0bce1770b5
2 changed files with 2 additions and 2 deletions

View file

@ -68,7 +68,7 @@ type Analyzer struct {
Stats Metrics `json:"metrics"` Stats Metrics `json:"metrics"`
} }
// NewAnalyzer buildas a new anaylzer. // NewAnalyzer builds a new anaylzer.
func NewAnalyzer(conf map[string]interface{}, logger *log.Logger) Analyzer { func NewAnalyzer(conf map[string]interface{}, logger *log.Logger) Analyzer {
if logger == nil { if logger == nil {
logger = log.New(os.Stdout, "[gas]", 0) logger = log.New(os.Stdout, "[gas]", 0)

View file

@ -46,7 +46,7 @@ func MatchCall(n ast.Node, r *regexp.Regexp) *ast.CallExpr {
return nil return nil
} }
// MatcMatchCompLit hCall will match an ast.CompositeLit if its string value obays the given regex. // MatcMatchCompLit will match an ast.CompositeLit if its string value obays the given regex.
func MatchCompLit(n ast.Node, r *regexp.Regexp) *ast.CompositeLit { func MatchCompLit(n ast.Node, r *regexp.Regexp) *ast.CompositeLit {
t := reflect.TypeOf(&ast.CompositeLit{}) t := reflect.TypeOf(&ast.CompositeLit{})
if name, ok := selectName(n, t); ok && r.MatchString(name) { if name, ok := selectName(n, t); ok && r.MatchString(name) {