commit 8346848109ab57cb04de87c6d86859c6b3de8ffa
parent 54ecade02fc2c86914b7ba2d3998eb3aff9a2f77
Author: Christian Oliff <christianoliff@yahoo.com>
Date: Thu, 29 Nov 2018 17:57:51 +0900
common/collections: Fix defines typo
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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 {