Browse Source

Docs: Fix misnamed parameter

v7.0.9
Tom Poole 2 years ago
parent
commit
714e8dda62
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_core/threads/juce_ThreadPool.h

+ 1
- 1
modules/juce_core/threads/juce_ThreadPool.h View File

@@ -227,7 +227,7 @@ public:
@param threadStackSizeBytes the size of the stack of each thread. If this value @param threadStackSizeBytes the size of the stack of each thread. If this value
is zero then the default stack size of the OS will is zero then the default stack size of the OS will
be used. be used.
@param priority the desired priority of each thread in the pool.
@param desiredThreadPriority the desired priority of each thread in the pool.
*/ */
ThreadPool (int numberOfThreads, ThreadPool (int numberOfThreads,
size_t threadStackSizeBytes = Thread::osDefaultStackSize, size_t threadStackSizeBytes = Thread::osDefaultStackSize,


Loading…
Cancel
Save