From 6bc52fd40a8eb1753b47a0c702e30e38e922cf69 Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Sat, 26 Aug 2023 20:04:19 -0700 Subject: [PATCH] Clarify term --- content/en/getting-started/glossary.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/getting-started/glossary.md b/content/en/getting-started/glossary.md index 937ca62d1b..8ff61d6b15 100644 --- a/content/en/getting-started/glossary.md +++ b/content/en/getting-started/glossary.md @@ -126,7 +126,7 @@ An unordered group of elements, each indexed by a unique key. See the [Go d ### method -Used within a [template action](#template-action) and associated with an [object](#object), a method takes zero or more [arguments](#argument) and returns a value. For example, `.IsHome` is a method on the `.Page` object which returns `true` if the current page is the home page. See also [function](#function). +Used within a [template action](#template-action) and associated with an [object](#object), a method takes zero or more [arguments](#argument) and either returns a value or performs an action. For example, `.IsHome` is a method on the `.Page` object which returns `true` if the current page is the home page. See also [function](#function). ### module