From: Johan Sageryd Date: Sun, 8 May 2016 16:06:03 +0000 (+0200) Subject: text/template: fix typo in documentation X-Git-Tag: go1.7beta1~241 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=114051aa1d5da5dec1b2707b1403261a3135b9b5;p=gostls13.git text/template: fix typo in documentation Change-Id: I4ccfaa16e153aad001d670891b3848264e63cf6f Reviewed-on: https://go-review.googlesource.com/23031 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/text/template/doc.go b/src/text/template/doc.go index df8c95f8c8..48e9aa7395 100644 --- a/src/text/template/doc.go +++ b/src/text/template/doc.go @@ -220,7 +220,7 @@ value (argument) or a function or method call, possibly with multiple arguments: Functions and function names are described below. A pipeline may be "chained" by separating a sequence of commands with pipeline -characters '|'. In a chained pipeline, the result of the each command is +characters '|'. In a chained pipeline, the result of each command is passed as the last argument of the following command. The output of the final command in the pipeline is the value of the pipeline.