Browse Source

Fix a typo

v7.0.9
Tom Poole 3 years ago
parent
commit
57202b360a
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      modules/juce_core/threads/juce_Thread.h

+ 3
- 3
modules/juce_core/threads/juce_Thread.h View File

@@ -75,9 +75,9 @@ public:
/** Linux only: A value with a range of 0-10, where 10 is the highest priority. */
int priority = 5;
/* iOS/macOS only: A millisecond value representing the estimated time between each
'Thread::run' call. Your thread may be penalised if you frequently
overrun this.
/** iOS/macOS only: A millisecond value representing the estimated time between each
'Thread::run' call. Your thread may be penalised if you frequently
overrun this.
*/
uint32_t workDurationMs = 0;
};


Loading…
Cancel
Save