diff --git a/.typos.toml b/.typos.toml index 4c11915ce..ac0993c49 100644 --- a/.typos.toml +++ b/.typos.toml @@ -1,9 +1,9 @@ [files] -extend-exclude = [ "arti-corpora", "testdata", "fallback_dirs.inc" ] +extend-exclude = [ "Cargo.lock", "arti-corpora", "testdata", "fallback_dirs.inc" ] [default.extend-identifiers] -# This shows up in sere crates. -ser = "ser" \ No newline at end of file +# This shows up in serde crates. +ser = "ser" diff --git a/crates/tor-client/src/address.rs b/crates/tor-client/src/address.rs index bd3f9eab7..54e12812c 100644 --- a/crates/tor-client/src/address.rs +++ b/crates/tor-client/src/address.rs @@ -287,7 +287,7 @@ impl DangerouslyIntoTorAddr for SocketAddrV6 { /// Check whether `hostname` is a valid hostname or not. /// -/// (Note that IPv6 addreses don't follow these rules.) +/// (Note that IPv6 addresses don't follow these rules.) /// /// TODO: Check whether the rules given here are in fact the same rules /// as Tor follows, and whether they conform to anything. diff --git a/crates/tor-dirmgr/src/err.rs b/crates/tor-dirmgr/src/err.rs index fabb15011..a79a057eb 100644 --- a/crates/tor-dirmgr/src/err.rs +++ b/crates/tor-dirmgr/src/err.rs @@ -69,7 +69,7 @@ pub enum Error { /// An error given by the checkable crate. #[error("checkable error: {0}")] SignatureError(#[from] signature::Error), - /// An IO error occured while manipulating storage on disk. + /// An IO error occurred while manipulating storage on disk. #[error("IO error: {0}")] IOError(#[from] std::io::Error), } diff --git a/maint/cargo_audit.sh b/maint/cargo_audit.sh index 3e018b042..baa881aa2 100755 --- a/maint/cargo_audit.sh +++ b/maint/cargo_audit.sh @@ -15,7 +15,7 @@ IGNORE=( # `localtime_r()`, which is not thread-safe if anybody calls # `setenv()`. # - # This is concerning! What makes it not disasterous is: + # This is concerning! What makes it not disastrous is: # * We don't use chrono for any local times in Arti: only Utc. # * We don't modify the environment. #