diff options
author | Roger Dingledine <arma@torproject.org> | 2014-08-06 02:20:51 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2014-08-06 02:20:51 -0400 |
commit | 0c869af7f8626cc74a7b82d0c0d6192cbb796d02 (patch) | |
tree | d79bdafb433ba7271fba344934e0df0e97b5c1b6 | |
parent | 74a8555d2be2ce9d33e9814212e5de49ba089274 (diff) | |
download | tor-0c869af7f8626cc74a7b82d0c0d6192cbb796d02.tar.gz tor-0c869af7f8626cc74a7b82d0c0d6192cbb796d02.zip |
fix three typos in comments
-rw-r--r-- | src/or/directory.c | 2 | ||||
-rw-r--r-- | src/or/routerlist.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/or/directory.c b/src/or/directory.c index 22ba056ee1..51ea312689 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -349,7 +349,7 @@ should_use_directory_guards(const or_options_t *options) return 1; } -/** Pick an unconsetrained directory server from among our guards, the latest +/** Pick an unconstrained directory server from among our guards, the latest * networkstatus, or the fallback dirservers, for use in downloading * information of type <b>type</b>, and return its routerstatus. */ static const routerstatus_t * diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 8f3477a4a4..b5e924522e 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -1365,7 +1365,7 @@ router_pick_trusteddirserver(dirinfo_type_t type, int flags) return router_pick_dirserver_generic(trusted_dir_servers, type, flags); } -/** Try to find a running fallback directory Flags are as for +/** Try to find a running fallback directory. Flags are as for * router_pick_directory_server. */ const routerstatus_t * @@ -1374,7 +1374,7 @@ router_pick_fallback_dirserver(dirinfo_type_t type, int flags) return router_pick_dirserver_generic(fallback_dir_servers, type, flags); } -/** Try to find a running fallback directory Flags are as for +/** Try to find a running fallback directory. Flags are as for * router_pick_directory_server. */ static const routerstatus_t * |