From f6cc392d1ddd53a003c413fba4c1fc244ce2d85e Mon Sep 17 00:00:00 2001 From: Ariel Mashraki Date: Mon, 19 Apr 2021 22:26:47 +0300 Subject: [PATCH] doc/go1.17: document text/template/parse.SkipFuncCheck Documents the newly added mode that skips type checking functions as per CL 301493. Fixes #46025 For #34652 For #44513 For #38627 Change-Id: I56c4f65924702a931944796e39f43cfeb66abc8a Reviewed-on: https://go-review.googlesource.com/c/go/+/311569 Reviewed-by: Ian Lance Taylor Reviewed-by: Emmanuel Odeke Trust: Michael Knyszek --- doc/go1.17.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/go1.17.html b/doc/go1.17.html index 3395c4e6700..3805a4c14e0 100644 --- a/doc/go1.17.html +++ b/doc/go1.17.html @@ -647,7 +647,8 @@ Do not send CLs removing the interior tags from such phrases.
text/template/parse

- TODO: https://golang.org/cl/301493: add a mode to skip func-check on parsing + The new SkipFuncCheck Mode + value changes the template parser to not verify that functions are defined.