1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

AudioWorkgroup: Fix typo in documentation

This commit is contained in:
Anthony Nicholls 2024-04-16 12:06:45 +01:00
parent 4274b835f6
commit 3af4adf82d

View file

@ -119,9 +119,9 @@ private:
@code @code
Constructor() Constructor()
{ {
startRealtimeThread (RealtimeThreadOptions{}.withApproximateAudioProcessingTime (samplesPerFrame, sampleRate)); startRealtimeThread (Thread::RealtimeOptions{}.withApproximateAudioProcessingTime (samplesPerFrame, sampleRate));
or or
startRealtimeThread (RealtimeThreadOptions{}.withProcessingTimeMs (10)); startRealtimeThread (Thread::RealtimeOptions{}.withProcessingTimeMs (10));
} }
void Thread::run() override void Thread::run() override