From ab4859bd948738b8ee243fab457bfa06919419c7 Mon Sep 17 00:00:00 2001 From: Abel Lucas Date: Tue, 29 Nov 2022 16:26:02 +0000 Subject: [PATCH] device: fix typos --- bumble/device.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bumble/device.py b/bumble/device.py index fde4ab42..6feef9a5 100644 --- a/bumble/device.py +++ b/bumble/device.py @@ -1911,7 +1911,7 @@ class Device(CompositeEventEmitter): self.connections[connection_handle] = connection # We may have an accept ongoing waiting for a connection request for `peer_address`. - # Typicaly happen when using `connect` to the same `peer_address` we are waiting with + # Typically happen when using `connect` to the same `peer_address` we are waiting with # an `accept` for. # In this case, set the completed `connection` to the `accept` future result. if peer_address in self.classic_pending_accepts: @@ -2094,7 +2094,7 @@ class Device(CompositeEventEmitter): def on_ssp_complete(self, connection): # On Secure Simple Pairing complete, in case: # - Connection isn't already authenticated - # - AND We are not the initiator of the authentication + # - AND we are not the initiator of the authentication # We must trigger authentication to known if we are truly authenticated if not connection.authenticating and not connection.authenticated: logger.debug(f'*** Trigger Connection Authentication: [0x{connection.handle:04X}] {connection.peer_address}')