From 5ef9978128953cb966003333cf7c1fb57276dd6c Mon Sep 17 00:00:00 2001 From: Phil Porada Date: Wed, 17 Jun 2026 08:55:27 -0700 Subject: [PATCH] Fix two typos --- lore-revision/src/nametable.rs | 2 +- lore-server/src/settings.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lore-revision/src/nametable.rs b/lore-revision/src/nametable.rs index f24a5e7..d0c0ce8 100644 --- a/lore-revision/src/nametable.rs +++ b/lore-revision/src/nametable.rs @@ -219,7 +219,7 @@ impl NameTable { /// (entries are never removed or relocated), and all callers immediately /// copy the result to an owned `String` before the borrow expires. pub fn load(&self, hash: u64) -> &str { - // TODO(mjansson): Garbage collect nametable by iterating entire merkle tree and rebuiling + // TODO(mjansson): Garbage collect nametable by iterating entire merkle tree and rebuilding // nametable, cleaning out stale entries let data = self.data.read(); let entry = data.entry_buffer.as_type_slice::(); diff --git a/lore-server/src/settings.rs b/lore-server/src/settings.rs index 2cbc5c3..2ca5e53 100644 --- a/lore-server/src/settings.rs +++ b/lore-server/src/settings.rs @@ -306,7 +306,7 @@ pub struct QuicSettings { pub port: i32, pub transport_bits_per_second: Option, pub transport_rtt: Option, - /// Keep below a threshold for whatever Load Balancer sits infront of the server + /// Keep below a threshold for whatever Load Balancer sits in front of the server /// or is expecting responses. If request handlers exceed this reasonable threshold /// then assume something has gone wrong and return a timeout response so we can get metrics /// and clients don't hang forever