Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorChristian Oliff <christianoliff@yahoo.com>2018-11-29 11:57:51 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-11-29 11:57:51 +0300
commit8346848109ab57cb04de87c6d86859c6b3de8ffa (patch)
tree0b21a6ce4c09ac45d1304348800e9ca9f835109a /common
parent54ecade02fc2c86914b7ba2d3998eb3aff9a2f77 (diff)
common/collections: Fix defines typo
Diffstat (limited to 'common')
-rw-r--r--common/collections/slice.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/collections/slice.go b/common/collections/slice.go
index 380d3d329..38ca86b08 100644
--- a/common/collections/slice.go
+++ b/common/collections/slice.go
@@ -17,7 +17,7 @@ import (
"reflect"
)
-// Slicer definse a very generic way to create a typed slice. This is used
+// Slicer defines a very generic way to create a typed slice. This is used
// in collections.Slice template func to get types such as Pages, PageGroups etc.
// instead of the less useful []interface{}.
type Slicer interface {