From c14cc0e6cd6f050a893c9a1316de1780b5b20f81 Mon Sep 17 00:00:00 2001
From: Erik Strand <erik.strand@cba.mit.edu>
Date: Fri, 19 Oct 2018 15:27:00 -0400
Subject: [PATCH] Fix another comment typo

---
 button_toggle.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/button_toggle.c b/button_toggle.c
index e13dddd..66e27e2 100644
--- a/button_toggle.c
+++ b/button_toggle.c
@@ -30,7 +30,7 @@ int main(void) {
             TCNT0 = 0;
         }
 
-        // If it's been 10ms or more since PA7 changed state, // it's not bouncing.
+        // If it's been 10ms or more since PA7 changed state, it's not bouncing.
         if (TCNT0 >= 195) {
             // It's been 10ms since the switch changed.
             if (bouncy_switch_state != debounced_switch_state) {
-- 
GitLab