From 798e792581276a3a591790b19f5b2966597be274 Mon Sep 17 00:00:00 2001 From: M1nd3r Date: Fri, 15 Mar 2024 09:28:22 +0100 Subject: [PATCH] Fix typo in fido2 comment --- core/src/apps/webauthn/fido2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/apps/webauthn/fido2.py b/core/src/apps/webauthn/fido2.py index 056dc56f5..b9abcd002 100644 --- a/core/src/apps/webauthn/fido2.py +++ b/core/src/apps/webauthn/fido2.py @@ -374,7 +374,7 @@ async def _read_cmd(iface: HID) -> Cmd | None: desc_cont = frame_cont() read = loop.wait(iface.iface_num() | io.POLL_READ) - # wait for incoming comand indefinitely + # wait for incoming command indefinitely buf = await read while True: ifrm = overlay_struct(bytearray(buf), desc_init)