From 242a471d4f0b047d507dd171d0291649be6d27bf Mon Sep 17 00:00:00 2001 From: Wesley Moore Date: Wed, 26 Dec 2018 08:29:03 +1100 Subject: [PATCH] Clarify comment --- src/display.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/display.rs b/src/display.rs index 24763b9..ba9ec54 100644 --- a/src/display.rs +++ b/src/display.rs @@ -101,7 +101,7 @@ impl<'a, I> Display<'a, I> where I: DisplayInterface { delay.delay_ms(50); // TODO: We don't really need to wait here... the program can go off and do other things // and only busy wait if it wants to talk to the display again. Could possibly treat - // the interface like a smart pointer in which "acquiring" it would wait until it's not + // the interface like a smart pointer in which deref would wait until it's not // busy. self.interface.busy_wait();