diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-03-15 10:39:50 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-03-21 13:24:09 -0400 |
commit | 2f2fba8a918674b7187a5b497bb156b79aaec4e1 (patch) | |
tree | 2c2fd4fd5fd6e9134eb497ed91c3e6572ba82f3e /src | |
parent | b24f15a9a16acc8009c25823a127f3090b9b2edc (diff) | |
download | tor-2f2fba8a918674b7187a5b497bb156b79aaec4e1.tar.gz tor-2f2fba8a918674b7187a5b497bb156b79aaec4e1.zip |
Use nth consistently in dircollate.h.
Documentation-only patch. Issue 17668.T6.
Diffstat (limited to 'src')
-rw-r--r-- | src/or/dircollate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/dircollate.c b/src/or/dircollate.c index 2f02512d3e..43cf27f489 100644 --- a/src/or/dircollate.c +++ b/src/or/dircollate.c @@ -22,8 +22,8 @@ static void dircollator_collate_by_ed25519(dircollator_t *dc); typedef struct ddmap_entry_s { HT_ENTRY(ddmap_entry_s) node; uint8_t d[DIGEST_LEN + DIGEST256_LEN]; - /* The i'th member of this array corresponds to the vote_routerstatus_t (if - * any) received for this digest pair from the n'th voter. */ + /* The nth member of this array corresponds to the vote_routerstatus_t (if + * any) received for this digest pair from the nth voter. */ vote_routerstatus_t *vrs_lst[FLEXIBLE_ARRAY_MEMBER]; } ddmap_entry_t; |