Fix typo on merge function page (#1408)

This commit is contained in:
Joe Mooring 2021-04-07 13:32:54 -07:00 committed by GitHub
parent 1bbed2cf3c
commit dea5e1fd7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ relatedfuncs: [dict, append, reflect.IsMap, reflect.IsSlice]
aliases: [] aliases: []
--- ---
Merge creates a copy of the final `MAP` and merges any preceeding `MAP` into it in reverse order. Merge creates a copy of the final `MAP` and merges any preceding `MAP` into it in reverse order.
Key handling is case-insensitive. Key handling is case-insensitive.
An example merging two maps. An example merging two maps.
@ -39,5 +39,3 @@ Resulting __$params__:
{{% note %}} {{% note %}}
Regardless of depth, merging only applies to maps. For slices, use [append]({{< ref "functions/append" >}}) Regardless of depth, merging only applies to maps. For slices, use [append]({{< ref "functions/append" >}})
{{% /note %}} {{% /note %}}