From: king6cong Date: Fri, 1 Feb 2019 10:41:51 +0000 (+0800) Subject: Fix typo X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=3dbf7d4a0eba779fd0ec8eb1e9b1966554fc4599;p=rust.git Fix typo --- diff --git a/src/tools/remote-test-server/src/main.rs b/src/tools/remote-test-server/src/main.rs index 3f56d4da6a3..750eea3a28a 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! //