summaryrefslogtreecommitdiffstats
path: root/docs/content/en/methods/menu-entry/Params.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/methods/menu-entry/Params.md')
-rw-r--r--docs/content/en/methods/menu-entry/Params.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/content/en/methods/menu-entry/Params.md b/docs/content/en/methods/menu-entry/Params.md
index 1486c12cb..8af3f0637 100644
--- a/docs/content/en/methods/menu-entry/Params.md
+++ b/docs/content/en/methods/menu-entry/Params.md
@@ -12,21 +12,21 @@ action:
When you define menu entries [in site configuration] or [in front matter], you can include a `params` key to attach additional information to the entry. For example:
{{< code-toggle file=hugo >}}
-[[menu.main]]
+[[menus.main]]
name = 'About'
pageRef = '/about'
weight = 10
-[[menu.main]]
+[[menus.main]]
name = 'Contact'
pageRef = '/contact'
weight = 20
-[[menu.main]]
+[[menus.main]]
name = 'Hugo'
url = 'https://gohugo.io'
weight = 30
-[menu.main.params]
+[menus.main.params]
rel = 'external'
{{< /code-toggle >}}