From 66c0c872640bfb020f7a7fcabbc4b51566f81ba1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= <joamag@gmail.com>
Date: Mon, 27 Feb 2023 00:20:11 +0000
Subject: [PATCH] docs: small comment tune

---
 src/apu.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/apu.rs b/src/apu.rs
index 2723df59..41855e71 100644
--- a/src/apu.rs
+++ b/src/apu.rs
@@ -56,7 +56,7 @@ impl Apu {
 
     pub fn read(&mut self, addr: u16) -> u8 {
         match addr {
-            0xff26 => 1 as u8, // todo implement this
+            0xff26 => 1 as u8, // @todo implement this
             _ => {
                 warnln!("Reading from unknown APU location 0x{:04x}", addr);
                 0xff
-- 
GitLab