docs: Update description of querify
authordigitalcraftsman <digitalcraftsman@protonmail.com>
Sat, 3 Dec 2016 19:23:41 +0000 (20:23 +0100)
committerdigitalcraftsman <digitalcraftsman@protonmail.com>
Sat, 3 Dec 2016 19:23:59 +0000 (20:23 +0100)
docs/content/templates/functions.md

index 68bebb0d7469ea52c9c4937013a298aaed7b9bab..53252ff6a69f5a02f8e8cf75595e1c0d44792d47 100644 (file)
@@ -882,7 +882,7 @@ e.g. `<a href="/tags/{{ . | urlize }}">{{ . }}</a>`
 
 ### querify
 
-Takes a set of key-value pairs and returns a [`url.Values`](https://godoc.org/net/url#Values) object. The [`Encode`](https://godoc.org/net/url#Values.Encode) method turns the pairs into a [query string](https://en.wikipedia.org/wiki/Query_string) that cen be postpended to a url. E.g. 
+Takes a set of key-value pairs and returns a [`url.Values`](https://godoc.org/net/url#Values) object. The [`Encode`](https://godoc.org/net/url#Values.Encode) method turns the pairs into a [query string](https://en.wikipedia.org/wiki/Query_string) that can be appended to a url. E.g. 
 
     <a href="https://www.google.com?{{ (querify "q" "test" "page" 3).Encode | safeHTML }}">Search</a>