From 2b918c1495b3120f3ca7a37d15852fef7f876852 Mon Sep 17 00:00:00 2001 From: ed Date: Thu, 9 Aug 2018 09:08:50 +0100 Subject: [PATCH] Fixed a couple of typos --- modules/juce_audio_processors/processors/juce_AudioProcessor.h | 2 +- modules/juce_events/messages/juce_Initialisation.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/juce_audio_processors/processors/juce_AudioProcessor.h b/modules/juce_audio_processors/processors/juce_AudioProcessor.h index 8d035df467..a09cc1959f 100644 --- a/modules/juce_audio_processors/processors/juce_AudioProcessor.h +++ b/modules/juce_audio_processors/processors/juce_AudioProcessor.h @@ -898,7 +898,7 @@ public: /** Returns the parameter that controls the AudioProcessor's bypass state. If this method returns a nullptr then you can still control the bypass by - calling processBlockBypassed instaed of processBlock. On the other hand, + calling processBlockBypassed instead of processBlock. On the other hand, if this method returns a non-null value, you should never call processBlockBypassed but use the returned parameter to conrol the bypass state instead. diff --git a/modules/juce_events/messages/juce_Initialisation.h b/modules/juce_events/messages/juce_Initialisation.h index 0a2985fb0c..9fa1ef31f4 100644 --- a/modules/juce_events/messages/juce_Initialisation.h +++ b/modules/juce_events/messages/juce_Initialisation.h @@ -155,7 +155,7 @@ public: #if JUCE_IOS /** - You can instruct JUCE to use a custom iOS app delegate class instaed of JUCE's default + You can instruct JUCE to use a custom iOS app delegate class instead of JUCE's default app delegate. For JUCE to work you must pass all messages to JUCE's internal app delegate. Below is an example of minimal forwarding custom delegate. Note that you are at your own risk if you decide to use your own delegate and subtle, hard to debug bugs may occur.