diff --git a/modules/juce_dsp/processors/juce_FIRFilter.h b/modules/juce_dsp/processors/juce_FIRFilter.h index 73b0b90f54..bcf1cc3db7 100644 --- a/modules/juce_dsp/processors/juce_FIRFilter.h +++ b/modules/juce_dsp/processors/juce_FIRFilter.h @@ -108,7 +108,7 @@ namespace FIR } //============================================================================== - /** The coefficients of the FIR filter. It's up to the called to ensure that + /** The coefficients of the FIR filter. It's up to the caller to ensure that these coefficients are modified in a thread-safe way. If you change the order of the coefficients then you must call reset after diff --git a/modules/juce_dsp/processors/juce_IIRFilter.h b/modules/juce_dsp/processors/juce_IIRFilter.h index a111d8a3ca..41e71e90e8 100644 --- a/modules/juce_dsp/processors/juce_IIRFilter.h +++ b/modules/juce_dsp/processors/juce_IIRFilter.h @@ -77,7 +77,7 @@ namespace IIR Filter& operator= (Filter&&) = default; //============================================================================== - /** The coefficients of the IIR filter. It's up to the called to ensure that + /** The coefficients of the IIR filter. It's up to the caller to ensure that these coefficients are modified in a thread-safe way. If you change the order of the coefficients then you must call reset after diff --git a/modules/juce_dsp/processors/juce_StateVariableFilter.h b/modules/juce_dsp/processors/juce_StateVariableFilter.h index 6caed43f7a..dfa1034e37 100644 --- a/modules/juce_dsp/processors/juce_StateVariableFilter.h +++ b/modules/juce_dsp/processors/juce_StateVariableFilter.h @@ -62,9 +62,9 @@ namespace StateVariableFilter //============================================================================== /** Creates a filter with default parameters. */ - Filter() : parameters (new Parameters) { reset(); } + Filter() : parameters (new Parameters) { reset(); } - Filter (Parameters* paramtersToUse) : parameters (paramtersToUse) { reset(); } + Filter (Parameters* parametersToUse) : parameters (parametersToUse) { reset(); } /** Creates a copy of another filter. */ Filter (const Filter&) = default; @@ -86,7 +86,7 @@ namespace StateVariableFilter void snapToZero() noexcept { util::snapToZero (s1); util::snapToZero (s2); } //============================================================================== - /** The parameters of the state variable filter. It's up to the called to ensure + /** The parameters of the state variable filter. It's up to the caller to ensure that these parameters are modified in a thread-safe way. */ typename Parameters::Ptr parameters;