diff options
author | Corinne Dashjr <corinne+git@dashjr.org> | 2015-04-28 14:48:28 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2015-05-01 11:21:27 +0000 |
commit | 7e6d23b1719191f83af7d3e7b134a90889b5c1ef (patch) | |
tree | 04c8888faab17cbe87ca776ab1076b78da0e875b /src/checkqueue.h | |
parent | 18d28326785a7111b50528107550c3d37ec40d89 (diff) |
Bugfix: Grammar fixes
Diffstat (limited to 'src/checkqueue.h')
-rw-r--r-- | src/checkqueue.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/checkqueue.h b/src/checkqueue.h index 6f6b97e3a7..20ba25bb41 100644 --- a/src/checkqueue.h +++ b/src/checkqueue.h @@ -54,7 +54,7 @@ private: /** * Number of verifications that haven't completed yet. - * This includes elements that are not anymore in queue, but still in + * This includes elements that are no longer queued, but still in the * worker's own batches. */ unsigned int nTodo; @@ -81,7 +81,7 @@ private: fAllOk &= fOk; nTodo -= nNow; if (nTodo == 0 && !fMaster) - // We processed the last element; inform the master he or she can exit and return the result + // We processed the last element; inform the master it can exit and return the result condMaster.notify_one(); } else { // first iteration @@ -136,7 +136,7 @@ public: Loop(); } - //! Wait until execution finishes, and return whether all evaluations where successful. + //! Wait until execution finishes, and return whether all evaluations were successful. bool Wait() { return Loop(true); |