From c46f39aca99471fd99f274389fed42dbd4b30195 Mon Sep 17 00:00:00 2001 From: johnl Date: Mon, 18 Jul 2016 09:07:59 +0200 Subject: [PATCH] Fix typo in 'iff' --- openhtf/plugs/usb/adb_protocol.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openhtf/plugs/usb/adb_protocol.py b/openhtf/plugs/usb/adb_protocol.py index 8982acfa5..7d85b4e1b 100644 --- a/openhtf/plugs/usb/adb_protocol.py +++ b/openhtf/plugs/usb/adb_protocol.py @@ -424,7 +424,7 @@ def IsOpen(self): return self.closed_state == self.ClosedState.OPEN def IsClosed(self): - """Return true ifff the transport layer is closed.""" + """Return true iff the transport layer is closed.""" return self.closed_state == self.ClosedState.CLOSED def EnqueueMessage(self, message, timeout):