Skip to content

Commit 49f8a80

Browse files
committed
change variable name to message
1 parent 046d431 commit 49f8a80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/bitmap_font_simpletest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
font_file = "fonts/LeagueSpartan-Bold-16.bdf"
1313

1414
# you can change the string that will get printed here
15-
specimen = "<3 Blinka"
15+
message = "<3 Blinka"
1616

1717
font = bitmap_font.load_font(font_file)
1818

1919
_, height, _, dy = font.get_bounding_box()
20-
font.load_glyphs(specimen)
20+
font.load_glyphs(message)
2121

2222
for y in range(height):
23-
for c in specimen:
23+
for c in message:
2424
glyph = font.get_glyph(ord(c))
2525
if not glyph:
2626
continue

0 commit comments

Comments
 (0)