From 057ceff53d54a8941fd4ae3e465dc342e59af531 Mon Sep 17 00:00:00 2001 From: Dmitrii Dolgov <9erthalion6@gmail.com> Date: Fri, 2 Aug 2024 16:26:39 +0200 Subject: [PATCH] Update src/worker/network.rs Wording Co-authored-by: Jouko Virtanen --- src/worker/network.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/worker/network.rs b/src/worker/network.rs index 0d35181..105c5c4 100644 --- a/src/worker/network.rs +++ b/src/worker/network.rs @@ -57,7 +57,7 @@ impl NetworkWorker { // spawn only two threads, where the first one receives connections // and adds streams into the list of active, and the second iterates // through streams and replies. This way the connections will have - // large latency, but for the purpose of networking workload it + // high latency, but for the purpose of networking workload it // doesn't matter. thread::spawn(move || loop { let mut buf_reader = BufReader::new(&stream);