summaryrefslogtreecommitdiffstats
path: root/modules/base
diff options
context:
space:
mode:
Diffstat (limited to 'modules/base')
-rw-r--r--modules/base/tool.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/base/tool.go b/modules/base/tool.go
index d7d86ea4a7..32987a0b8b 100644
--- a/modules/base/tool.go
+++ b/modules/base/tool.go
@@ -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
}