From dd0aa799ebbcb42cbc8d15aaa3edf905e8e1d83a Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Wed, 5 Feb 2020 15:34:50 -0800 Subject: [PATCH] doc/go1.14: quote {{ and }} in text/template note Fixes #37070 Change-Id: I543957df264367e56c71a25bfaea5cf7935d438f Reviewed-on: https://go-review.googlesource.com/c/go/+/217979 Reviewed-by: Dmitri Shuralyov --- doc/go1.14.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/go1.14.html b/doc/go1.14.html index b3423f8753..ec7f8e4f43 100644 --- a/doc/go1.14.html +++ b/doc/go1.14.html @@ -829,8 +829,8 @@ appropriately.) The text/template package now correctly reports errors when a parenthesized argument is used as a function. This most commonly shows up in erroneous cases like - {{if (eq .F "a") or (eq .F "b")}}. - This should be written as {{if or (eq .F "a") (eq .F "b")}}. + {{"{{"}}if (eq .F "a") or (eq .F "b"){{"}}"}}. + This should be written as {{"{{"}}if or (eq .F "a") (eq .F "b"){{"}}"}}. The erroneous case never worked as expected, and will now be reported with an error can't give argument to non-function.

-- 2.50.0