diff --git a/examples/ili9341_shield_simpletest.py b/examples/ili9341_shield_simpletest.py index 38f219e..822a868 100644 --- a/examples/ili9341_shield_simpletest.py +++ b/examples/ili9341_shield_simpletest.py @@ -46,7 +46,7 @@ text_group = displayio.Group(max_size=10, scale=3, x=57, y=120) text = "Hello World!" text_area = label.Label(terminalio.FONT, text=text, color=0xFFFF00) -text_group.append(text_area) # Subgroup gor text scaling +text_group.append(text_area) # Subgroup for text scaling splash.append(text_group) while True: diff --git a/examples/ili9341_simpletest.py b/examples/ili9341_simpletest.py index 6cf812a..5030319 100644 --- a/examples/ili9341_simpletest.py +++ b/examples/ili9341_simpletest.py @@ -47,7 +47,7 @@ text_group = displayio.Group(max_size=10, scale=3, x=57, y=120) text = "Hello World!" text_area = label.Label(terminalio.FONT, text=text, color=0xFFFF00) -text_group.append(text_area) # Subgroup gor text scaling +text_group.append(text_area) # Subgroup for text scaling splash.append(text_group) while True: