summaryrefslogtreecommitdiffstats
path: root/common/paths/path.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/paths/path.go')
-rw-r--r--common/paths/path.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/paths/path.go b/common/paths/path.go
index f1992f196..5d211c5e0 100644
--- a/common/paths/path.go
+++ b/common/paths/path.go
@@ -209,7 +209,7 @@ func extractFilename(in, ext, base, pathSeparator string) (name string) {
// return the filename minus the extension (and the ".")
name = base[:strings.LastIndex(base, ".")]
} else {
- // no extension case so just return base, which willi
+ // no extension case so just return base, which will
// be the filename
name = base
}