From 8c64f5e3cf99edda647169b03b8b78d8075182a6 Mon Sep 17 00:00:00 2001
From: yuichitamiya <y2miyacatsfab@gmail.com>
Date: Tue, 22 Mar 2022 13:35:57 +0900
Subject: [PATCH] fix tips bit

---
 docs/Instruction/tips/register_bit.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/Instruction/tips/register_bit.md b/docs/Instruction/tips/register_bit.md
index 18e2840..70b4b24 100644
--- a/docs/Instruction/tips/register_bit.md
+++ b/docs/Instruction/tips/register_bit.md
@@ -210,7 +210,7 @@ void loop() {
   delay(500);
   PORTA.OUT |= 0b00010000;  //Set PA4 to HIGH...(2)
   delay(500);
-  PORTA.OUT &= ~0b00000001; //Set PA0 to LOW....(3)
+  PORTA.OUT &= ~0b00000001; //Set PA0 to LOW ( Remaining PA4 setting )....(3)
 }
 ```
 ### What to work in (1)(2)(3)
-- 
GitLab