From a087a5aa400d7a5fe3e53bb0934f104705e549d8 Mon Sep 17 00:00:00 2001 From: Fufu Fang Date: Mon, 26 Aug 2024 22:41:49 +0100 Subject: [PATCH] Deleted spurious comment --- src/config.c | 4 ---- src/config.h | 5 ----- 2 files changed, 9 deletions(-) diff --git a/src/config.c b/src/config.c index e971da8..af20dbe 100644 --- a/src/config.c +++ b/src/config.c @@ -22,10 +22,6 @@ ConfigStruct CONFIG; -/** - * \note The opening curly bracket should be at line 39, so the code lines up - * with the definition code in util.h. - */ void Config_init(void) { CONFIG.mode = NORMAL; diff --git a/src/config.h b/src/config.h index f69cf1a..dc7a4e5 100644 --- a/src/config.h +++ b/src/config.h @@ -37,11 +37,6 @@ typedef enum { SINGLE = 3, } OperationMode; -/** - * \brief configuration data structure - * \note The opening curly bracket should be at line 39, so the code belong - * lines up with the initialisation code in util.c - */ typedef struct { /** \brief Operation Mode */ OperationMode mode;