comment typo fixed

This commit is contained in:
nathan 2017-09-30 15:41:48 +02:00
parent ff562bea65
commit fb246ee164
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ class ParallelProcessor<T extends Runnable> {
public
void doneQueueingTasks() throws InterruptedException {
for (int i = 0; i < threads.size(); i++) {
// this tells out threads that we have finished work and can exit
// this tells our threads that we have finished work and can exit
queue.put(SENTINEL);
}
}