diff --git a/src/shared/algorithms/Filters/LowPass.h b/src/shared/algorithms/Filters/LowPass.h index ebd1ab7cdd441f8a48f40ad14c687fbd9586e422..bd6e18ba564514d2a713dc9975489cbcb23ed76b 100644 --- a/src/shared/algorithms/Filters/LowPass.h +++ b/src/shared/algorithms/Filters/LowPass.h @@ -45,8 +45,8 @@ public: * @param cutoffFreq The cutoff frequency of the filter * @param lambda The lambda parameter of the filter * - * @note WARNING: Initialize output at 0 at first - * @note WARNING: frequency set by parameters, look for these in any case + * @warning Initialize output at 0 at first + * @warning frequency set by parameters, look for these in any case */ LowPass(float gain, float cutoffFreq, float lambda); @@ -55,8 +55,8 @@ public: * * @param config The configuration of the filter * - * @note WARNING: Initialize output at 0 at first - * @note WARNING: frequency set by parameters, look for these in any case + * @warning Initialize output at 0 at first + * @warning frequency set by parameters, look for these in any case */ explicit LowPass(const LowPassConfig& config);