1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Fix a typo

This commit is contained in:
Tom Poole 2022-12-21 09:58:31 +00:00
parent 3975259ee9
commit 57202b360a

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;
};