From 57202b360adf5beb7c477cc4fab0eaaf403f84b3 Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Wed, 21 Dec 2022 09:58:31 +0000 Subject: [PATCH] Fix a typo --- modules/juce_core/threads/juce_Thread.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/juce_core/threads/juce_Thread.h b/modules/juce_core/threads/juce_Thread.h index 37fd6bf559..97b66ff6fb 100644 --- a/modules/juce_core/threads/juce_Thread.h +++ b/modules/juce_core/threads/juce_Thread.h @@ -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; };