From: Sean Liao Date: Tue, 22 Mar 2022 20:53:10 +0000 (+0000) Subject: text/template: remove newline special casing in documentation X-Git-Tag: go1.19beta1~855 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2b8178c14d8f71a3f022653c2e779e92eea9cdec;p=gostls13.git text/template: remove newline special casing in documentation Updates #29770 Fixes #51872 Change-Id: Icee660c8cc6c69a79ad11e818dd8ab40a344e800 Reviewed-on: https://go-review.googlesource.com/c/go/+/394676 Reviewed-by: Daniel Martí Trust: Daniel Martí Trust: Ian Lance Taylor --- diff --git a/src/text/template/doc.go b/src/text/template/doc.go index 10093881fb..58cc97371b 100644 --- a/src/text/template/doc.go +++ b/src/text/template/doc.go @@ -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.