Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
doc: Removed use of gendered pronouns
Browse files Browse the repository at this point in the history
  • Loading branch information
alex authored and isaacs committed Nov 30, 2013
1 parent 7bb7371 commit 47d98b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/unix/fs.c
Expand Up @@ -302,7 +302,7 @@ static ssize_t uv__fs_sendfile_emul(uv_fs_t* req) {
*
* 1. Read errors are reported only if nsent==0, otherwise we return nsent.
* The user needs to know that some data has already been sent, to stop
* him from sending it twice.
* them from sending it twice.
*
* 2. Write errors are always reported. Write errors are bad because they
* mean data loss: we've read data but now we can't write it out.
Expand Down
4 changes: 2 additions & 2 deletions src/unix/stream.c
Expand Up @@ -679,8 +679,8 @@ static void uv__write_req_finish(uv_write_t* req) {
/* Only free when there was no error. On error, we touch up write_queue_size
* right before making the callback. The reason we don't do that right away
* is that a write_queue_size > 0 is our only way to signal to the user that
* he should stop writing - which he should if we got an error. Something to
* revisit in future revisions of the libuv API.
* they should stop writing - which they should if we got an error. Something
* to revisit in future revisions of the libuv API.
*/
if (req->error == 0) {
if (req->bufs != req->bufsml)
Expand Down

0 comments on commit 47d98b6

Please sign in to comment.