diff options
| author | Corinne Dashjr <[email protected]> | 2015-04-28 14:48:28 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2015-05-01 11:21:27 +0000 |
| commit | 7e6d23b1719191f83af7d3e7b134a90889b5c1ef (patch) | |
| tree | 04c8888faab17cbe87ca776ab1076b78da0e875b /src/checkqueue.h | |
| parent | Merge pull request #5971 (diff) | |
| download | discoin-7e6d23b1719191f83af7d3e7b134a90889b5c1ef.tar.xz discoin-7e6d23b1719191f83af7d3e7b134a90889b5c1ef.zip | |
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 6f6b97e3a..20ba25bb4 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); |