summaryrefslogtreecommitdiffstats
path: root/common/collections/append.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/collections/append.go')
-rw-r--r--common/collections/append.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/common/collections/append.go b/common/collections/append.go
index b9a9419cb..ee15fef7d 100644
--- a/common/collections/append.go
+++ b/common/collections/append.go
@@ -1,4 +1,4 @@
-// Copyright 2018 The Hugo Authors. All rights reserved.
+// Copyright 2019 The Hugo Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -92,9 +92,7 @@ func appendToInterfaceSlice(tov reflect.Value, from ...interface{}) ([]interface
tos = append(tos, tov.Index(i).Interface())
}
- for _, v := range from {
- tos = append(tos, v)
- }
+ tos = append(tos, from...)
return tos, nil
}