This is an automated email from the git hooks/post-receive script.
arma pushed a commit to branch main in repository tor.
The following commit(s) were added to refs/heads/main by this push: new 834745929a fix easy typos 834745929a is described below
commit 834745929a0b78aed84e1d5465db40c2fef759b3 Author: Roger Dingledine arma@torproject.org AuthorDate: Tue Jul 5 15:18:29 2022 -0400
fix easy typos --- src/core/or/dos.c | 2 +- src/feature/stats/rephist.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/core/or/dos.c b/src/core/or/dos.c index 2eb5782481..6dd3c50051 100644 --- a/src/core/or/dos.c +++ b/src/core/or/dos.c @@ -534,7 +534,7 @@ conn_update_on_close(conn_client_stats_t *stats, const tor_addr_t *addr) { /* Extra super duper safety. Going below 0 means an underflow which could * lead to most likely a false positive. In theory, this should never happen - * but lets be extra safe. */ + * but let's be extra safe. */ if (BUG(stats->concurrent_count == 0)) { return; } diff --git a/src/feature/stats/rephist.c b/src/feature/stats/rephist.c index 52bd94aba9..5738259262 100644 --- a/src/feature/stats/rephist.c +++ b/src/feature/stats/rephist.c @@ -2114,7 +2114,7 @@ static overload_onionskin_assessment_t overload_onionskin_assessment;
/** * We combine ntorv3 and ntor into the same stat, so we must - * use this function to covert the cell type to a stat index. + * use this function to convert the cell type to a stat index. */ static inline uint16_t onionskin_type_to_stat(uint16_t type) @@ -2137,7 +2137,7 @@ onionskin_type_to_stat(uint16_t type) * the stats are reset back to 0 and the assessment time period updated. * * This is called when a ntor handshake is _requested_ because we want to avoid - * to have an assymetric situation where requested counter is reset to 0 but + * to have an asymmetric situation where requested counter is reset to 0 but * then a drop happens leading to the drop counter being incremented while the * requested counter is 0. */ static void
tor-commits@lists.torproject.org