Skip to content

Commit

Permalink
Docs: fix typo in os.pwrite docstring (#107087)
Browse files Browse the repository at this point in the history
  • Loading branch information
zougloub authored Jul 23, 2023
1 parent 7ca2d8e commit 8de8a81
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Modules/clinic/posixmodule.c.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Modules/posixmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -11283,13 +11283,13 @@ os.pwrite -> Py_ssize_t
Write bytes to a file descriptor starting at a particular offset.
Write buffer to fd, starting at offset bytes from the beginning of
the file. Returns the number of bytes writte. Does not change the
the file. Returns the number of bytes written. Does not change the
current file offset.
[clinic start generated code]*/

static Py_ssize_t
os_pwrite_impl(PyObject *module, int fd, Py_buffer *buffer, Py_off_t offset)
/*[clinic end generated code: output=c74da630758ee925 input=19903f1b3dd26377]*/
/*[clinic end generated code: output=c74da630758ee925 input=614acbc7e5a0339a]*/
{
Py_ssize_t size;
int async_err = 0;
Expand Down

0 comments on commit 8de8a81

Please sign in to comment.