diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-07-05 12:10:12 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-07-05 12:10:12 -0400 |
commit | 8ba4ba0a7492e158640200cb26717abfcc6617b7 (patch) | |
tree | 1ea4b7d84d131ce8624b8c42ec14bda0993d3fa3 /src/or/policies.c | |
parent | 267e16ea616b3466652bfee81fec507ea45d96a6 (diff) | |
download | tor-8ba4ba0a7492e158640200cb26717abfcc6617b7.tar.gz tor-8ba4ba0a7492e158640200cb26717abfcc6617b7.zip |
Grammar.
I grepped and hand-inspected the "it's" instances, to see if any
were supposed to be possessive. While doing that, I found a
"the the", so I grepped to see if there were any more.
Diffstat (limited to 'src/or/policies.c')
-rw-r--r-- | src/or/policies.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/or/policies.c b/src/or/policies.c index 2703d7edef..7ddebd6096 100644 --- a/src/or/policies.c +++ b/src/or/policies.c @@ -2345,11 +2345,13 @@ policy_summary_reject(smartlist_t *summary, } /** Add a single exit policy item to our summary: - * If it is an accept ignore it unless it is for all IP addresses - * ("*"), i.e. it's prefixlen/maskbits is 0, else call + * + * If it is an accept, ignore it unless it is for all IP addresses + * ("*", i.e. its prefixlen/maskbits is 0). Otherwise call * policy_summary_accept(). - * If it's a reject ignore it if it is about one of the private - * networks, else call policy_summary_reject(). + * + * If it is a reject, ignore it if it is about one of the private + * networks. Otherwise call policy_summary_reject(). */ static void policy_summary_add_item(smartlist_t *summary, addr_policy_t *p) |