docs: Fix pipe examples
authorCameron Moore <moorereason@gmail.com>
Thu, 15 Dec 2016 16:56:52 +0000 (10:56 -0600)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 15 Dec 2016 18:33:40 +0000 (19:33 +0100)
Fixes #2787

docs/content/templates/go-templates.md

index ef22bbc851761b57c6f2d22fab05f44a95fdb486..bb7c71606a7e0141cc7c070a4d4e8327fe0552c2 100644 (file)
@@ -206,14 +206,11 @@ A few simple examples should help convey how to use the pipe.
 
 **Example 1:**
 
-    {{ if eq 1 1 }} Same {{ end }}
+    {{ shuffle (seq 1 5) }}
 
 is the same as
 
-    {{ eq 1 1 | if }} Same {{ end }}
-
-It does look odd to place the `if` at the end, but it does provide a good
-illustration of how to use the pipes.
+    {{ (seq 1 5) | shuffle }}
 
 **Example 2:**
 
@@ -227,13 +224,13 @@ The `index` function is a [Go][] built-in, and you can read about it [here][gost
 
 **Example 3:**
 
-    {{ if or (or (isset .Params "title") (isset .Params "caption")) (isset .Params "attr")}}
+    {{ if or (or (isset .Params "title") (isset .Params "caption")) (isset .Params "attr") }}
     Stuff Here
     {{ end }}
 
 Could be rewritten as
 
-    {{  isset .Params "caption" | or isset .Params "title" | or isset .Params "attr" | if }}
+    {{ if isset .Params "caption" | or isset .Params "title" | or isset .Params "attr" }}
     Stuff Here
     {{ end }}