From fb246ee1648b71ec0464b77411d7399438304d99 Mon Sep 17 00:00:00 2001 From: nathan Date: Sat, 30 Sep 2017 15:41:48 +0200 Subject: [PATCH] comment typo fixed --- src/dorkbox/util/ParallelProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dorkbox/util/ParallelProcessor.java b/src/dorkbox/util/ParallelProcessor.java index 4142b34..670bfed 100644 --- a/src/dorkbox/util/ParallelProcessor.java +++ b/src/dorkbox/util/ParallelProcessor.java @@ -169,7 +169,7 @@ class ParallelProcessor { 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); } }