From 8346848109ab57cb04de87c6d86859c6b3de8ffa Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Thu, 29 Nov 2018 17:57:51 +0900 Subject: [PATCH] common/collections: Fix defines typo --- common/collections/slice.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {