diff --git a/modules/juce_audio_processors/utilities/juce_ParameterAttachments.h b/modules/juce_audio_processors/utilities/juce_ParameterAttachments.h index c54d008341..18b3748f3c 100644 --- a/modules/juce_audio_processors/utilities/juce_ParameterAttachments.h +++ b/modules/juce_audio_processors/utilities/juce_ParameterAttachments.h @@ -275,7 +275,7 @@ class WebSliderParameterAttachment : private WebSliderRelay::Listener public: /** Creates a connection between a plug-in parameter and a WebSliderRelay. - @param parameter The parameter to use + @param parameterIn The parameter to use @param sliderStateIn The WebSliderRelay to use @param undoManager An optional UndoManager */ @@ -323,7 +323,7 @@ class WebToggleButtonParameterAttachment : private WebToggleButtonRelay::Listen public: /** Creates a connection between a plug-in parameter and a WebToggleButtonRelay. - @param parameter The parameter to use + @param parameterIn The parameter to use @param button The WebToggleButtonRelay to use @param undoManager An optional UndoManager */ @@ -368,7 +368,7 @@ class WebComboBoxParameterAttachment : private WebComboBoxRelay::Listener public: /** Creates a connection between a plug-in parameter and a WebComboBoxRelay. - @param parameter The parameter to use + @param parameterIn The parameter to use @param combo The WebComboBoxRelay to use @param undoManager An optional UndoManager */ diff --git a/modules/juce_gui_basics/widgets/juce_TextEditor.h b/modules/juce_gui_basics/widgets/juce_TextEditor.h index 044e26c2f0..22401775f8 100644 --- a/modules/juce_gui_basics/widgets/juce_TextEditor.h +++ b/modules/juce_gui_basics/widgets/juce_TextEditor.h @@ -632,7 +632,7 @@ public: virtual ~InputFilter() = default; /** This method is called whenever text is entered into the editor. - An implementation of this class should should check the input string, + An implementation of this class should check the input string, and return an edited version of it that should be used. */ virtual String filterNewText (TextEditor&, const String& newInput) = 0; diff --git a/modules/juce_gui_basics/windows/juce_VBlankAttachment.h b/modules/juce_gui_basics/windows/juce_VBlankAttachment.h index a0e6a13a52..5e1b0954c6 100644 --- a/modules/juce_gui_basics/windows/juce_VBlankAttachment.h +++ b/modules/juce_gui_basics/windows/juce_VBlankAttachment.h @@ -39,7 +39,7 @@ namespace juce Helper class to synchronise Component updates to the vertical blank event of the display that the Component is presented on. This is useful when animating the Component's contents. - @tags{GUI, Animations} + @tags{Animations} */ class JUCE_API VBlankAttachment final : public ComponentPeer::VBlankListener, public ComponentListener