From: Ian Lance Taylor Date: Wed, 19 Dec 2018 15:08:38 +0000 (-0800) Subject: doc: clarify change to File.Sync on macOS X-Git-Tag: go1.12beta2~97 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=90dca98d33055b8365d9e7e40ebb4ca478daf77e;p=gostls13.git doc: clarify change to File.Sync on macOS Updates #26650 Change-Id: I0ec070127dcacc7fc68dd5baf125eb762e1ea846 Reviewed-on: https://go-review.googlesource.com/c/155038 Reviewed-by: Bryan C. Mills --- diff --git a/doc/go1.12.html b/doc/go1.12.html index 7f5847c58b..1a0127d88f 100644 --- a/doc/go1.12.html +++ b/doc/go1.12.html @@ -640,7 +640,8 @@ for {

File.Sync now uses F_FULLFSYNC on macOS - to properly flush content to permanent storage. Note that this might have a negative performance impact. + to correctly flush the file contents to permanent storage. + This may cause the method to run more slowly than in previous releases.