Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
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 cmd/misspell/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var (

const (
// Note for gometalinter it must be "File:Line:Column: Msg"
// note space beteen ": Msg"
// note space between ": Msg"
defaultWriteTmpl = `{{ .Filename }}:{{ .Line }}:{{ .Column }}: corrected "{{ .Original }}" to "{{ .Corrected }}"`
defaultReadTmpl = `{{ .Filename }}:{{ .Line }}:{{ .Column }}: "{{ .Original }}" is a misspelling of "{{ .Corrected }}"`
csvTmpl = `{{ printf "%q" .Filename }},{{ .Line }},{{ .Column }},{{ .Original }},{{ .Corrected }}`
Expand Down
4 changes: 2 additions & 2 deletions ignore/glob.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func NewMultiMatch(matchers []Matcher) *MultiMatch {
return &MultiMatch{matchers: matchers}
}

// Match satifies the Matcher iterface
// Match satisfies the Matcher iterface

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

iterface? Shouldn't be interface?

func (mm *MultiMatch) Match(arg string) bool {
// Normal: OR
// false, false -> false
Expand All @@ -51,7 +51,7 @@ func (mm *MultiMatch) Match(arg string) bool {
// True returns true
func (mm *MultiMatch) True() bool { return true }

// MarshalText satifies the ?? interface
// MarshalText satisfies the encoding.TextMarshaler interface
func (mm *MultiMatch) MarshalText() ([]byte, error) {
return []byte("multi"), nil
}
Expand Down
2 changes: 1 addition & 1 deletion notwords.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func RemoveHost(s string) string {
return reHost.ReplaceAllStringFunc(s, replaceWithBlanks)
}

// RemoveBackslashEscapes removes characters that are preceeded by a backslash
// RemoveBackslashEscapes removes characters that are preceded by a backslash
// commonly found in printf format stringd "\nto"
func removeBackslashEscapes(s string) string {
return reBackslash.ReplaceAllStringFunc(s, replaceWithBlanks)
Expand Down
2 changes: 1 addition & 1 deletion url.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
// @(https?|ftp)://(-\.)?([^\s/?\.#-]+\.?)+(/[^\s]*)?$@iS
var reURL = regexp.MustCompile(`(?i)(https?|ftp)://(-\.)?([^\s/?\.#]+\.?)+(/[^\s]*)?`)

// StripURL attemps to replace URLs with blank spaces, e.g.
// StripURL attempts to replace URLs with blank spaces, e.g.
// "xxx http://foo.com/ yyy -> "xxx yyyy"
func StripURL(s string) string {
return reURL.ReplaceAllStringFunc(s, replaceWithBlanks)
Expand Down