summaryrefslogtreecommitdiffstats
path: root/common/collections
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-11-13 18:28:40 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-11-13 18:28:40 +0100
commit782dd15858128d8dfe78970c86e543b6590a004c (patch)
tree63a48b40e989146c507760b9b6f80ae699770105 /common/collections
parentaff9c091669a022b59f493c9dccf72be29511299 (diff)
More spelling corrections
Diffstat (limited to 'common/collections')
-rw-r--r--common/collections/append.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/collections/append.go b/common/collections/append.go
index 617d6258a..b9a9419cb 100644
--- a/common/collections/append.go
+++ b/common/collections/append.go
@@ -19,7 +19,7 @@ import (
)
// Append appends from to a slice to and returns the resulting slice.
-// If lenght of from is one and the only element is a slice of same type as to,
+// If length of from is one and the only element is a slice of same type as to,
// it will be appended.
func Append(to interface{}, from ...interface{}) (interface{}, error) {
tov, toIsNil := indirect(reflect.ValueOf(to))