From 9491249089633dfc8bdc3565f95bb3024c629003 Mon Sep 17 00:00:00 2001 From: Lokathor Date: Wed, 6 Mar 2019 19:41:03 -0700 Subject: [PATCH] typo --- src/io/irq.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/irq.rs b/src/io/irq.rs index a5cb63c..cb246b5 100644 --- a/src/io/irq.rs +++ b/src/io/irq.rs @@ -156,7 +156,7 @@ impl IrqEnableSetting { /// Yes, you want to have interrupts. pub const IRQ_YES: Self = Self::new().with_interrupts_enabled(true); - /// No, please do not have interrupts. + /// No, you do not want to have interrupts. pub const IRQ_NO: Self = Self::new(); }