From e3f2e474b562c2d9f861ca487dbcfc55f1be55a7 Mon Sep 17 00:00:00 2001 From: Brooke Chalmers Date: Thu, 9 Nov 2023 22:00:07 -0500 Subject: [PATCH] typo --- src/cpu/execute.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpu/execute.rs b/src/cpu/execute.rs index abb18eb..4cc1695 100644 --- a/src/cpu/execute.rs +++ b/src/cpu/execute.rs @@ -8,7 +8,7 @@ pub trait Execute { } impl Execute for Mos6502 { - #[allow(clippy::manual-range-patterns)] + #[allow(clippy::manual_range_patterns)] fn execute(&mut self, opcode: u8) -> Result { match opcode { // === LOAD ===