type github.com/go-git/gcfg/scanner.ErrorList

12 uses

	github.com/go-git/gcfg/scanner (current package)
		errors.go#L40: type ErrorList []*Error
		errors.go#L43: func (p *ErrorList) Add(pos token.Position, msg string) {
		errors.go#L48: func (p *ErrorList) Reset() { *p = (*p)[0:0] }
		errors.go#L51: func (p ErrorList) Len() int      { return len(p) }
		errors.go#L52: func (p ErrorList) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
		errors.go#L54: func (p ErrorList) Less(i, j int) bool {
		errors.go#L70: func (p ErrorList) Sort() {
		errors.go#L75: func (p *ErrorList) RemoveMultiples() {
		errors.go#L90: func (p ErrorList) Error() string {
		errors.go#L102: func (p ErrorList) Err() error {
		errors.go#L114: 	if list, ok := err.(ErrorList); ok {

	github.com/go-git/gcfg
		read.go#L55: 	var errs scanner.ErrorList