summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2019-05-13 16:00:53 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2019-05-13 16:00:53 (GMT)
commit85c69d5c4c5682a70201612128e838d438c01499 (patch)
treeecb597c3ab961697edd94be97459b3282016f894
parent410b85a7f701be280eb15b0ca4fe116e86f1d008 (diff)
downloadcpython-85c69d5c4c5682a70201612128e838d438c01499.zip
cpython-85c69d5c4c5682a70201612128e838d438c01499.tar.gz
cpython-85c69d5c4c5682a70201612128e838d438c01499.tar.bz2
Fix typo in NEWS item about IDLE (os.flush() should be os.fsync()) (#13284)
-rw-r--r--Misc/NEWS.d/next/IDLE/2019-05-05-16-27-53.bpo-13102.AGNWYJ.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2019-05-05-16-27-53.bpo-13102.AGNWYJ.rst b/Misc/NEWS.d/next/IDLE/2019-05-05-16-27-53.bpo-13102.AGNWYJ.rst
index 18b31b1..2a905bf 100644
--- a/Misc/NEWS.d/next/IDLE/2019-05-05-16-27-53.bpo-13102.AGNWYJ.rst
+++ b/Misc/NEWS.d/next/IDLE/2019-05-05-16-27-53.bpo-13102.AGNWYJ.rst
@@ -1 +1 @@
-When saving a file, call os.flush() so bits are flushed to e.g. USB drive.
+When saving a file, call os.fsync() so bits are flushed to e.g. USB drive.