Skip to content

Commit 85a303f

Browse files
authored
Merge pull request #11 from makermelissa/master
Fixed a typo in a comment
2 parents 9bd3132 + 2cd72bd commit 85a303f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/ili9341_shield_simpletest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
text_group = displayio.Group(max_size=10, scale=3, x=57, y=120)
4747
text = "Hello World!"
4848
text_area = label.Label(terminalio.FONT, text=text, color=0xFFFF00)
49-
text_group.append(text_area) # Subgroup gor text scaling
49+
text_group.append(text_area) # Subgroup for text scaling
5050
splash.append(text_group)
5151

5252
while True:

examples/ili9341_simpletest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
text_group = displayio.Group(max_size=10, scale=3, x=57, y=120)
4848
text = "Hello World!"
4949
text_area = label.Label(terminalio.FONT, text=text, color=0xFFFF00)
50-
text_group.append(text_area) # Subgroup gor text scaling
50+
text_group.append(text_area) # Subgroup for text scaling
5151
splash.append(text_group)
5252

5353
while True:

0 commit comments

Comments
 (0)