From 3dbf7d4a0eba779fd0ec8eb1e9b1966554fc4599 Mon Sep 17 00:00:00 2001 From: king6cong Date: Fri, 1 Feb 2019 18:41:51 +0800 Subject: [PATCH] Fix typo --- src/tools/remote-test-server/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/remote-test-server/src/main.rs b/src/tools/remote-test-server/src/main.rs index 3f56d4da6a3ed..750eea3a28aef 100644 --- a/src/tools/remote-test-server/src/main.rs +++ b/src/tools/remote-test-server/src/main.rs @@ -174,7 +174,7 @@ fn handle_run(socket: TcpStream, work: &Path, lock: &Mutex<()>) { // other thread created a child process with the file open for writing, and // we attempt to execute it, so we get an error. // - // This race is resolve by ensuring that only one thread can writ ethe file + // This race is resolve by ensuring that only one thread can write the file // and spawn a child process at once. Kinda an unfortunate solution, but we // don't have many other choices with this sort of setup! //