From 565d664c58e85903dff611d11da5afd456eb3aa3 Mon Sep 17 00:00:00 2001 From: jules Date: Tue, 31 May 2016 11:29:25 +0100 Subject: [PATCH] Fixed a typo in a comment --- modules/juce_audio_processors/processors/juce_AudioChannelSet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_audio_processors/processors/juce_AudioChannelSet.h b/modules/juce_audio_processors/processors/juce_AudioChannelSet.h index 6b569b86ed..ab84241362 100644 --- a/modules/juce_audio_processors/processors/juce_AudioChannelSet.h +++ b/modules/juce_audio_processors/processors/juce_AudioChannelSet.h @@ -169,7 +169,7 @@ public: /** Returns the number of channels in the set. */ int size() const noexcept; - /** Returns the number of channels in the set. */ + /** Returns true if there are no channels in the set. */ bool isDisabled() const noexcept { return size() == 0; } /** Returns an array of all the types in this channel set. */