ref: 01b8bc1b261cef85eb600fa6c2deec07fd7dc4b2
parent: 0ba9fb9631f6f97ae50929006937b540b1ff8a37
author: digitalcraftsman <[email protected]>
date: Sat Dec 3 15:23:41 EST 2016
docs: Update description of querify
--- a/docs/content/templates/functions.md
+++ b/docs/content/templates/functions.md
@@ -882,7 +882,7 @@
### 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>