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][].
This commit is contained in:
Víctor Adrián de la Cruz Serrano 2017-11-20 09:12:13 -06:00 committed by Bjørn Erik Pedersen
parent a5d4f762fb
commit 94cffc43c4

View File

@ -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).