Fix some typos.

This commit is contained in:
Bruce Mitchener
2018-03-05 10:48:48 +07:00
committed by Dan Gohman
parent 162ca42b08
commit 125270e2b0
17 changed files with 30 additions and 30 deletions

View File

@@ -119,7 +119,7 @@ fn worker_thread(
loop {
// Lock the mutex only long enough to extract a request.
let Request(jobid, path) = match requests.lock().unwrap().recv() {
Err(..) => break, // TX end shuit down. exit thread.
Err(..) => break, // TX end shut down. exit thread.
Ok(req) => req,
};

View File

@@ -221,7 +221,7 @@ impl TestRunner {
}
self.tests[jobid].state = State::Done(result);
// Rports jobs in order.
// Reports jobs in order.
while self.report_job() {
self.reported_tests += 1;
}