From 6658f1fa7029bae8387671a65ea5d6a94860ecf6 Mon Sep 17 00:00:00 2001 From: jules Date: Mon, 13 Mar 2017 14:14:04 +0000 Subject: [PATCH] Fixed a documentation typo --- .../utilities/juce_AudioProcessorValueTreeState.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/juce_audio_processors/utilities/juce_AudioProcessorValueTreeState.h b/modules/juce_audio_processors/utilities/juce_AudioProcessorValueTreeState.h index e55ca4a225..fdfd81907c 100644 --- a/modules/juce_audio_processors/utilities/juce_AudioProcessorValueTreeState.h +++ b/modules/juce_audio_processors/utilities/juce_AudioProcessorValueTreeState.h @@ -39,7 +39,7 @@ GUI controls like sliders. To use: - 1) Create an AudioProcessorValueTreeState, and give it some parameters using createParameter(). + 1) Create an AudioProcessorValueTreeState, and give it some parameters using createAndAddParameter(). 2) Initialise the state member variable with a type name. */ class JUCE_API AudioProcessorValueTreeState : private Timer, @@ -125,7 +125,7 @@ public: This must be initialised after all calls to createAndAddParameter(). You can replace this with your own ValueTree object, and can add properties and children to the tree. This class will automatically add children for each of the - parameter objects that are created by createParameter(). + parameter objects that are created by createAndAddParameter(). */ ValueTree state;