summaryrefslogtreecommitdiffstats
path: root/Doc/library/os.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r--Doc/library/os.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index ab1a615..35cf7c0 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -1323,12 +1323,12 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
.. data:: RWF_APPEND
- Provide a per-write equivalent of the :data:`O_APPEND` :func:`os.open`
- flag. This flag is meaningful only for :func:`os.pwritev`, and its
- effect applies only to the data range written by the system call. The
- *offset* argument does not affect the write operation; the data is always
- appended to the end of the file. However, if the *offset* argument is
- ``-1``, the current file *offset* is updated.
+ Provide a per-write equivalent of the :data:`O_APPEND` :func:`os.open`
+ flag. This flag is meaningful only for :func:`os.pwritev`, and its
+ effect applies only to the data range written by the system call. The
+ *offset* argument does not affect the write operation; the data is always
+ appended to the end of the file. However, if the *offset* argument is
+ ``-1``, the current file *offset* is updated.
.. availability:: Linux 4.16 and newer.