From: Vishal Dalwadi Date: Fri, 7 May 2021 04:35:36 +0000 (+0530) Subject: doc/go1.17: document changes to os package X-Git-Tag: go1.17beta1~125 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7c692cc7ea;p=gostls13.git doc/go1.17: document changes to os package Documents the changes to File.WriteString method. For #44513. Fixes #46018. Change-Id: I3a8ef9df9f84662614d54802710bd705d626b995 Reviewed-on: https://go-review.googlesource.com/c/go/+/317910 Reviewed-by: Dmitri Shuralyov Trust: Cherry Mui --- diff --git a/doc/go1.17.html b/doc/go1.17.html index 97307bc508..48b5563602 100644 --- a/doc/go1.17.html +++ b/doc/go1.17.html @@ -428,7 +428,8 @@ Do not send CLs removing the interior tags from such phrases.
os

- TODO: https://golang.org/cl/268020: avoid allocation in File.WriteString + The File.WriteString method + has been optimized to no longer make a copy of the input string.