From 94cffc43c4dd8afe1b2326b8c71998877094c0d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Adri=C3=A1n=20de=20la=20Cruz=20Serrano?= Date: Mon, 20 Nov 2017 09:12:13 -0600 Subject: [PATCH] Fix little typo Changed: Note that both examples make **us** of Go template's [math functions][]. To: ### Example 2: Comparing Numbers ``` {{ lt 1 2 }} => true (i.e., since 1 is less than 2) ``` Note that both examples make **use** of Go template's [math functions][]. --- content/templates/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/templates/introduction.md b/content/templates/introduction.md index 26802a7f7..0f4e8e3d3 100644 --- a/content/templates/introduction.md +++ b/content/templates/introduction.md @@ -101,7 +101,7 @@ Go templates only ship with a few basic functions but also provide a mechanism f => true (i.e., since 1 is less than 2) ``` -Note that both examples make us of Go template's [math functions][]. +Note that both examples make use of Go template's [math functions][]. {{% note "Additional Boolean Operators" %}} There are more boolean operators than those listed in the Hugo docs in the [Golang template documentation](http://golang.org/pkg/text/template/#hdr-Functions).