From d1fc79aef0326fd84ec22f81035cd61553ffdf01 Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Tue, 20 Jan 2026 16:28:09 +0000 Subject: [PATCH] Docs: Fix some broken Doxygen links --- modules/juce_dsp/processors/juce_FIRFilter.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/juce_dsp/processors/juce_FIRFilter.h b/modules/juce_dsp/processors/juce_FIRFilter.h index 63a5f0a794..c512b8d229 100644 --- a/modules/juce_dsp/processors/juce_FIRFilter.h +++ b/modules/juce_dsp/processors/juce_FIRFilter.h @@ -45,12 +45,12 @@ namespace juce::dsp::FIR A processing class that can perform FIR filtering on an audio signal, in the time domain. - Using FIRFilter is fast enough for FIRCoefficients with a size lower than 128 - samples. For longer filters, it might be more efficient to use the class + Using FIR::Filter is fast enough for FIR::Coefficients with a size lower than + 128 samples. For longer filters, it might be more efficient to use the class Convolution instead, which does the same processing in the frequency domain thanks to FFT. - @see FIRFilter::Coefficients, Convolution, FFT + @see FIR::Coefficients, Convolution, FFT @tags{DSP} */ @@ -212,9 +212,9 @@ namespace juce::dsp::FIR //============================================================================== /** - A set of coefficients for use in an FIRFilter object. + A set of coefficients for use in an FIR::Filter object. - @see FIRFilter + @see FIR::Filter @tags{DSP} */