Skip to content

Commit a398ec9

Browse files
cclaussmarcan
authored andcommitted
Fix typos
Signed-off-by: Christian Clauss <[email protected]>
1 parent ed5b247 commit a398ec9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

asahi_firmware/asn1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def _emit_tag_long(self, nr, typ, cls): # type: (int, int, int) -> None
231231
self._emit(bytes([val]))
232232

233233
def _emit_length(self, length): # type: (int) -> None
234-
"""Emit length octects."""
234+
"""Emit length octets."""
235235
if length < 128:
236236
self._emit_length_short(length)
237237
else:

asahi_firmware/bluetooth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def parse_fname(self, fname):
6565
return None
6666
chip, stepping = match.groups()
6767

68-
# board type is either preceeded by PCIE_macOS or by PCIE
68+
# board type is either preceded by PCIE_macOS or by PCIE
6969
try:
7070
pcie_offset = fname.index("PCIE")
7171
except:

0 commit comments

Comments
 (0)