fixed typo in threadpool.nim

This commit is contained in:
Michael Werner
2015-05-07 22:39:15 +02:00
committed by Simon Hafner
parent 073547bbc4
commit c384f05e49

View File

@@ -300,7 +300,7 @@ proc setMinPoolSize*(size: range[1..MaxThreadPoolSize]) =
minPoolSize = size
proc setMaxPoolSize*(size: range[1..MaxThreadPoolSize]) =
## sets the minimal thread pool size. The default value of this
## sets the maximal thread pool size. The default value of this
## is ``MaxThreadPoolSize``.
maxPoolSize = size
if currentPoolSize > maxPoolSize: