summaryrefslogtreecommitdiffstats
path: root/docs/content/en/variables
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-01-20 12:48:39 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-01-20 12:48:39 +0100
commita1a9f088b1b087b0991f8890865c95b359eea51c (patch)
tree5cb5ed0fb1445b24f42ce116d363fac72a74c89a /docs/content/en/variables
parent07ad283f686904e5835f621d73ed342ba2a48eb3 (diff)
parente48ffb763572814a3788780bb9653dfa2daeae22 (diff)
Diffstat (limited to 'docs/content/en/variables')
-rw-r--r--docs/content/en/variables/page.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/en/variables/page.md b/docs/content/en/variables/page.md
index a98edde54..8bad66d4f 100644
--- a/docs/content/en/variables/page.md
+++ b/docs/content/en/variables/page.md
@@ -118,7 +118,7 @@ See also `.ExpiryDate`, `.Date`, `.PublishDate`, and [`.GitInfo`][gitinfo].
: the Page content stripped of HTML tags and presented as a string.
.PlainWords
-: the Page content stripped of HTML as a `[]string` using Go's [`strings.Fields`](https://golang.org/pkg/strings/#Fields) to split `.Plain` into a slice.
+: the slice of strings that results from splitting .Plain into words, as defined in Go's [strings.Fields](https://golang.org/pkg/strings/#Fields).
.Prev
: Points down to the previous [regular page](/variables/site/#site-pages) (sorted by Hugo's [default sort](/templates/lists#default-weight-date-linktitle-filepath)). Example: `{{if .Prev}}{{.Prev.Permalink}}{{end}}`. Calling `.Prev` from the last page returns `nil`.