aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2024-04-18 13:27:15 +0000
committerDavid Goulet <dgoulet@torproject.org>2024-04-18 13:27:15 +0000
commita9d2977c1bc0800140f812d582ba1babe4a3a0ff (patch)
treef7afe945d49d3d7ea0f6ddf289a760d1f0e57449
parenta31c8c581804708211c6770061ff1c32ff14691a (diff)
parentf9624935bd19cf5bbcdde697a000f4e93c2c0084 (diff)
downloadtor-a9d2977c1bc0800140f812d582ba1babe4a3a0ff.tar.gz
tor-a9d2977c1bc0800140f812d582ba1babe4a3a0ff.zip
Merge branch 'typos' into 'main'
Typos See merge request tpo/core/tor!812
-rw-r--r--doc/man/tor.1.txt2
-rw-r--r--src/feature/hs/hs_service.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/man/tor.1.txt b/doc/man/tor.1.txt
index d98f24626c..d227d332d9 100644
--- a/doc/man/tor.1.txt
+++ b/doc/man/tor.1.txt
@@ -4118,7 +4118,7 @@ __DataDirectory__/**`stats/hidserv-stats`**::
of what fraction of the traffic is hidden service rendezvous traffic, and
approximately how many hidden services the relay has seen.
-__DataDirectory__/**networkstatus-bridges`**::
+__DataDirectory__/**`networkstatus-bridges`**::
Only used by authoritative bridge directories. Contains information
about bridges that have self-reported themselves to the bridge
authority.
diff --git a/src/feature/hs/hs_service.c b/src/feature/hs/hs_service.c
index 6fa238e2b3..3fb0220cc0 100644
--- a/src/feature/hs/hs_service.c
+++ b/src/feature/hs/hs_service.c
@@ -2153,7 +2153,7 @@ build_all_descriptors(time_t now)
continue;
}
- /* Reaching this point means we are pass bootup so at runtime. We should
+ /* Reaching this point means we are past bootup so at runtime. We should
* *never* have an empty current descriptor. If the next descriptor is
* empty, we'll try to build it for the next time period. This only
* happens when we rotate meaning that we are guaranteed to have a new SRV
@@ -2175,7 +2175,7 @@ build_all_descriptors(time_t now)
/** Randomly pick a node to become an introduction point but not present in the
* given exclude_nodes list. The chosen node is put in the exclude list
* regardless of success or not because in case of failure, the node is simply
- * unsusable from that point on.
+ * unusable from that point on.
*
* If direct_conn is set, try to pick a node that our local firewall/policy
* allows us to connect to directly. If we can't find any, return NULL.