Browse Source

Fixed typos in the DSP module

tags/2021-05-28
Noah Dayan 7 years ago
parent
commit
f2824e96ef
3 changed files with 5 additions and 5 deletions
  1. +1
    -1
      modules/juce_dsp/processors/juce_FIRFilter.h
  2. +1
    -1
      modules/juce_dsp/processors/juce_IIRFilter.h
  3. +3
    -3
      modules/juce_dsp/processors/juce_StateVariableFilter.h

+ 1
- 1
modules/juce_dsp/processors/juce_FIRFilter.h View File

@@ -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


+ 1
- 1
modules/juce_dsp/processors/juce_IIRFilter.h View File

@@ -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


+ 3
- 3
modules/juce_dsp/processors/juce_StateVariableFilter.h View File

@@ -62,9 +62,9 @@ namespace StateVariableFilter
//==============================================================================
/** Creates a filter with default parameters. */
Filter() : parameters (new Parameters<NumericType>) { reset(); }
Filter() : parameters (new Parameters<NumericType>) { reset(); }
Filter (Parameters<NumericType>* paramtersToUse) : parameters (paramtersToUse) { reset(); }
Filter (Parameters<NumericType>* 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<NumericType>::Ptr parameters;


Loading…
Cancel
Save