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
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2019-07-31 15:36:36 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-08-01 14:55:48 +0300
commitf7f549e3a7492c787c6abb4900cc0f57c8ab1826 (patch)
tree18b82b0d343893e0f6e22fac9a6ca5e0f19fc876 /tpl/collections
parent6512d128c6d33b86f376764ab1d622a89ea18d20 (diff)
Fix assorted typos
Diffstat (limited to 'tpl/collections')
-rw-r--r--tpl/collections/merge_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/collections/merge_test.go b/tpl/collections/merge_test.go
index 9e34a6e98..ca55107ac 100644
--- a/tpl/collections/merge_test.go
+++ b/tpl/collections/merge_test.go
@@ -61,7 +61,7 @@ func TestMerge(t *testing.T) {
// Error cases.
{"dst not a map", "not a map", nil, nil, true},
{"src not a map", simpleMap, "not a map", nil, true},
- {"diferent map typs", simpleMap, map[int]interface{}{32: "a"}, nil, true},
+ {"different map types", simpleMap, map[int]interface{}{32: "a"}, nil, true},
{"all nil", nil, nil, nil, true},
} {