diff options
| author | king6cong <king6cong@gmail.com> | 2019-02-01 18:41:51 +0800 |
|---|---|---|
| committer | king6cong <king6cong@gmail.com> | 2019-02-01 18:44:26 +0800 |
| commit | 3dbf7d4a0eba779fd0ec8eb1e9b1966554fc4599 (patch) | |
| tree | e5b501fd794d6b841b2b36d648e7fc49e5a4fce2 | |
| parent | 1aa250635e9fd2646116726c88a31c15eb4ab74e (diff) | |
| download | rust-3dbf7d4a0eba779fd0ec8eb1e9b1966554fc4599.tar.gz rust-3dbf7d4a0eba779fd0ec8eb1e9b1966554fc4599.zip | |
Fix typo
| -rw-r--r-- | src/tools/remote-test-server/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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! // |
