diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-01-27 08:51:28 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-01-27 08:51:28 -0500 |
commit | 39a86185c8c04c4622c5d1cd5f6cdcba91995473 (patch) | |
tree | 2f81c8ab8ab37454ac0ce587c4793d9d66da5ca4 /src/or/connection.c | |
parent | 42dea56363c24960e85344749644f6502f625463 (diff) | |
download | tor-39a86185c8c04c4622c5d1cd5f6cdcba91995473.tar.gz tor-39a86185c8c04c4622c5d1cd5f6cdcba91995473.zip |
Correct further grammatical errors in tor comments
Avoid using a pronoun where it makes comments unclear.
Avoid using gender for things that don't have it.
Avoid assigning gender to people unnecessarily.
Diffstat (limited to 'src/or/connection.c')
-rw-r--r-- | src/or/connection.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index efe804df28..123c33a876 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -3606,7 +3606,7 @@ connection_read_to_buf(connection_t *conn, ssize_t *max_to_read, } /* Call even if result is 0, since the global read bucket may - * have reached 0 on a different conn, and this guy needs to + * have reached 0 on a different conn, and this connection needs to * know to stop reading. */ connection_consider_empty_read_buckets(conn); if (n_written > 0 && connection_is_writing(conn)) @@ -4102,7 +4102,7 @@ connection_handle_write_impl(connection_t *conn, int force) } /* Call even if result is 0, since the global write bucket may - * have reached 0 on a different conn, and this guy needs to + * have reached 0 on a different conn, and this connection needs to * know to stop writing. */ connection_consider_empty_write_buckets(conn); if (n_read > 0 && connection_is_reading(conn)) |