fix some typos (#1082)

This commit is contained in:
Lunny Xiao 2017-02-28 12:56:15 +08:00 committed by GitHub
parent 4b286f282a
commit c2eef171ff
4 changed files with 6 additions and 6 deletions

View file

@ -529,17 +529,17 @@ func IsTextFile(data []byte) bool {
return strings.Index(http.DetectContentType(data), "text/") != -1
}
// IsImageFile detectes if data is an image format
// IsImageFile detects if data is an image format
func IsImageFile(data []byte) bool {
return strings.Index(http.DetectContentType(data), "image/") != -1
}
// IsPDFFile detectes if data is a pdf format
// IsPDFFile detects if data is a pdf format
func IsPDFFile(data []byte) bool {
return strings.Index(http.DetectContentType(data), "application/pdf") != -1
}
// IsVideoFile detectes if data is an video format
// IsVideoFile detects if data is an video format
func IsVideoFile(data []byte) bool {
return strings.Index(http.DetectContentType(data), "video/") != -1
}