Skip to content

Commit 6695e3c

Browse files
author
Margaret Matocha
committed
fixed an error I made to a comment
1 parent a102ba2 commit 6695e3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_display_text/label.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,10 @@ def _update_text(self, new_text): # pylint: disable=too-many-locals
169169

170170
x += glyph.shift_x
171171

172-
# TODO skip this for control sequences or non-qables.
172+
# TODO skip this for control sequences or non-printables.
173173
i += 1
174174
old_c += 1
175-
# skip all non-prinables in the old string
175+
# skip all non-printables in the old string
176176
while (
177177
self._text
178178
and old_c < len(self._text)

0 commit comments

Comments
 (0)