1
0
mirror of https://github.com/golang/go synced 2024-09-25 05:20:13 -06:00

text/template: fix typo in documentation

Change-Id: I4ccfaa16e153aad001d670891b3848264e63cf6f
Reviewed-on: https://go-review.googlesource.com/23031
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Johan Sageryd 2016-05-08 18:06:03 +02:00 committed by Brad Fitzpatrick
parent ef62f641c3
commit 114051aa1d

View File

@ -220,7 +220,7 @@ value (argument) or a function or method call, possibly with multiple arguments:
Functions and function names are described below. Functions and function names are described below.
A pipeline may be "chained" by separating a sequence of commands with pipeline 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 passed as the last argument of the following command. The output of the final
command in the pipeline is the value of the pipeline. command in the pipeline is the value of the pipeline.