summaryrefslogtreecommitdiff
path: root/docs/pyboard/tutorial
diff options
context:
space:
mode:
Diffstat (limited to 'docs/pyboard/tutorial')
-rw-r--r--docs/pyboard/tutorial/lcd_skin.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/pyboard/tutorial/lcd_skin.rst b/docs/pyboard/tutorial/lcd_skin.rst
index 4df004160..9d0ff473e 100644
--- a/docs/pyboard/tutorial/lcd_skin.rst
+++ b/docs/pyboard/tutorial/lcd_skin.rst
@@ -29,7 +29,7 @@ Make sure the LCD skin is attached to the pyboard as pictured at the top of this
>>> import pyb
>>> lcd = pyb.LCD('X')
>>> lcd.light(True)
- >>> lcd.write('Hello uPy!\n')
+ >>> lcd.write('Hello MPy!\n')
You can make a simple animation using the code::
@@ -38,7 +38,7 @@ You can make a simple animation using the code::
lcd.light(True)
for x in range(-80, 128):
lcd.fill(0)
- lcd.text('Hello uPy!', x, 10, 1)
+ lcd.text('Hello MPy!', x, 10, 1)
lcd.show()
pyb.delay(25)