ソースを参照

fix error message when no type matches.

Lucas Stadler 11 年 前
コミット
4a6301bab2
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1 1
      go/detect/detect.go

+ 1 - 1
go/detect/detect.go

@ -65,7 +65,7 @@ func Detect(file string) (*Project, error) {
65 65
		}
66 66
	}
67 67
68
	return nil, errors.New("no project matches")
68
	return nil, errors.New("no project type matches")
69 69
}
70 70
71 71
func DetectAll(file string) []*Project {