From e50dd51cfcf25d57c678cd0f682d9f62af1358ac Mon Sep 17 00:00:00 2001
From: Federico Lolli <federico.lolli@skywarder.eu>
Date: Wed, 25 Oct 2023 16:41:13 +0200
Subject: [PATCH] [LowPass] minor: warnings

---
 src/shared/algorithms/Filters/LowPass.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/shared/algorithms/Filters/LowPass.h b/src/shared/algorithms/Filters/LowPass.h
index ebd1ab7cd..bd6e18ba5 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);
 
-- 
GitLab