}
// DecodeTypes takes a list of media type configurations and merges those,
-// in ther order given, with the Hugo defaults as the last resort.
+// in the order given, with the Hugo defaults as the last resort.
func DecodeTypes(maps ...map[string]interface{}) (Types, error) {
m := make(Types, len(DefaultTypes))
copy(m, DefaultTypes)
}
// DecodeFormats takes a list of output format configurations and merges those,
-// in ther order given, with the Hugo defaults as the last resort.
+// in the order given, with the Hugo defaults as the last resort.
func DecodeFormats(mediaTypes media.Types, maps ...map[string]interface{}) (Formats, error) {
f := make(Formats, len(DefaultFormats))
copy(f, DefaultFormats)