From 98e67b8c1c51e038d9019f95d470068095d6a68f Mon Sep 17 00:00:00 2001 From: Rekai Musuka Date: Mon, 15 Mar 2021 19:20:08 -0500 Subject: [PATCH] chore: fix spelling error --- src/timer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timer.rs b/src/timer.rs index 6e493d0..45fef55 100644 --- a/src/timer.rs +++ b/src/timer.rs @@ -60,6 +60,6 @@ impl From for u8 { fn from(control: TimerControl) -> Self { let byte: u8 = control.speed as u8; // Get bit 1 and 0. - (byte & !(1u8 << 2)) | ((control.enabled as u8) << 2) // specifically manibulate bit 2 + (byte & !(1u8 << 2)) | ((control.enabled as u8) << 2) // specifically manipulate bit 2 } }