From 2cd72bdcf3d2eb5357e13d76979aadaae32d7ab0 Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Fri, 2 Aug 2019 10:11:01 -0700 Subject: [PATCH] Fixed a typo --- examples/ili9341_shield_simpletest.py | 2 +- examples/ili9341_simpletest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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: