summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--media/mediaType.go2
-rw-r--r--output/outputFormat.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/media/mediaType.go b/media/mediaType.go
index f64f51253..942e9070e 100644
--- a/media/mediaType.go
+++ b/media/mediaType.go
@@ -134,7 +134,7 @@ func (t Types) GetBySuffix(suffix string) (tp Type, found bool) {
}
// 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)
diff --git a/output/outputFormat.go b/output/outputFormat.go
index 06a82fdb7..4a95c1c70 100644
--- a/output/outputFormat.go
+++ b/output/outputFormat.go
@@ -217,7 +217,7 @@ func (formats Formats) FromFilename(filename string) (f Format, found bool) {
}
// 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)