From a6689a6831f1ded31183a9113edf67daa0c2cfc3 Mon Sep 17 00:00:00 2001 From: Pierre Beitz Date: Fri, 22 Apr 2022 10:39:58 +0200 Subject: [PATCH] Fix blockWhileColumn methods documentation --- hacker/BruteForceService.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hacker/BruteForceService.cpp b/hacker/BruteForceService.cpp index f9bd48d..7e8bcd6 100644 --- a/hacker/BruteForceService.cpp +++ b/hacker/BruteForceService.cpp @@ -99,7 +99,7 @@ bool BruteForceService::isBrowsingColumn(uint8_t col) { /** * Nothing to change here! - * This method will wait for a column input to become idle (<=> to be set to HIGH) + * This method will wait for a column input to become active (<=> to be set to LOW) */ void BruteForceService::blockWhileColumnIdle(uint8_t col) { while (isBrowsingColumn(col)) {} @@ -107,7 +107,7 @@ void BruteForceService::blockWhileColumnIdle(uint8_t col) { /** * Nothing to change here! - * This method will wait for a column input to become active (<=> to be set to LOW) + * This method will wait for a column input to become idle (<=> to be set to HIGH) */ void BruteForceService::blockWhileColumnActive(uint8_t col) { while (!isBrowsingColumn(col)) {}