From cfc56af95c603ae968640c19b28127250cdfc211 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gu=C3=B0ni=20M=C3=A1r=20Gilbert?= Date: Sat, 4 Jun 2022 20:24:26 +0000 Subject: [PATCH] Cleanup: fix parameter comments --- Firmware/mmu2_reporting.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Firmware/mmu2_reporting.cpp b/Firmware/mmu2_reporting.cpp index fe0bef8c3..35b8e09bd 100644 --- a/Firmware/mmu2_reporting.cpp +++ b/Firmware/mmu2_reporting.cpp @@ -51,7 +51,7 @@ static void ReportErrorHookDynamicRender(void) /** * @brief Renders any characters that are static on the MMU error screen i.e. they don't change. - * @param[in] ec Error code + * @param[in] ei Error code index */ static void ReportErrorHookStaticRender(uint8_t ei) { //! Show an error screen @@ -92,7 +92,7 @@ static void ReportErrorHookStaticRender(uint8_t ei) { /** * @brief Monitors the LCD button selection without blocking MMU communication - * @param[in] ec Error code + * @param[in] ei Error code index * @return 0 if there is no knob click -- * 1 if user clicked 'More' and firmware should render * the error screen when ReportErrorHook is called next --