diff --git a/content/templates/taxonomy-templates.md b/content/templates/taxonomy-templates.md
index 6e5b6c40f..5cb0f3346 100644
--- a/content/templates/taxonomy-templates.md
+++ b/content/templates/taxonomy-templates.md
@@ -143,7 +143,7 @@ Taxonomies can be ordered by either alphabetical key or by the number of content
```
{{ $data := .Data }}
- {{ range $key, $value := .Data.Taxonomy.Alphabetical }}
+ {{ range $key, $value := .Data.Terms.Alphabetical }}
- {{ $value.Name }} {{ $value.Count }}
{{ end }}
@@ -154,7 +154,7 @@ Taxonomies can be ordered by either alphabetical key or by the number of content
```
{{ $data := .Data }}
- {{ range $key, $value := .Data.Taxonomy.ByCount }}
+ {{ range $key, $value := .Data.Terms.ByCount }}
- {{ $value.Name }} {{ $value.Count }}
{{ end }}