]> Cypherpunks.ru repositories - gostls13.git/commitdiff
text/template: remove newline special casing in documentation
authorSean Liao <sean@liao.dev>
Tue, 22 Mar 2022 20:53:10 +0000 (20:53 +0000)
committerIan Lance Taylor <iant@golang.org>
Thu, 31 Mar 2022 05:34:15 +0000 (05:34 +0000)
Updates #29770
Fixes #51872

Change-Id: Icee660c8cc6c69a79ad11e818dd8ab40a344e800
Reviewed-on: https://go-review.googlesource.com/c/go/+/394676
Reviewed-by: Daniel Martí <mvdan@mvdan.cc>
Trust: Daniel Martí <mvdan@mvdan.cc>
Trust: Ian Lance Taylor <iant@golang.org>

src/text/template/doc.go

index 10093881fbef66440d3f9cf46018220049886a19..58cc97371b00276356af874a67904252e325735c 100644 (file)
@@ -18,7 +18,6 @@ structure as execution proceeds.
 The input text for a template is UTF-8-encoded text in any format.
 "Actions"--data evaluations or control structures--are delimited by
 "{{" and "}}"; all text outside actions is copied to the output unchanged.
-Except for raw strings, actions may not span newlines, although comments can.
 
 Once parsed, a template may be executed safely in parallel, although if parallel
 executions share a Writer the output may be interleaved.