From bdc9a837e914a3bd684ef3a24588b2627b1c6c04 Mon Sep 17 00:00:00 2001 From: Alberto Donizetti Date: Tue, 1 Dec 2020 14:19:57 +0100 Subject: [PATCH] doc/go1.16: add path, path/filepath changes to release notes For #40700 Fixes #42910 Change-Id: Ie380f5a03930d20dd5001c4cc184cadf2db33de7 Reviewed-on: https://go-review.googlesource.com/c/go/+/274475 Trust: Alberto Donizetti Reviewed-by: Dmitri Shuralyov --- doc/go1.16.html | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/doc/go1.16.html b/doc/go1.16.html index 1628c6f437..f3bc2fb4d0 100644 --- a/doc/go1.16.html +++ b/doc/go1.16.html @@ -732,16 +732,24 @@ Do not send CLs removing the interior tags from such phrases.
path
-

- TODO: https://golang.org/cl/264397: validate patterns in Match, Glob +

+ The Match and Glob functions now + return an error if the unmatched part of the pattern has a + syntax error. Previously, the functions returned early on a failed + match, and thus did not report any later syntax error in the + pattern.

path/filepath
-

- TODO: https://golang.org/cl/264397: validate patterns in Match, Glob +

+ The Match and Glob functions now + return an error if the unmatched part of the pattern has a + syntax error. Previously, the functions returned early on a failed + match, and thus did not report any later syntax error in the + pattern.

-- 2.48.1