summaryrefslogtreecommitdiff
path: root/tests/io/stringio1.py
diff options
context:
space:
mode:
authorAlexander Steffen <devel.20.webmeister@spamgourmet.com>2017-06-30 09:22:17 +0200
committerDamien George <damien.p.george@gmail.com>2017-07-31 18:35:40 +1000
commit55f33240f3d7051d4213629e92437a36f1fac50e (patch)
treeeec1d74319ec056ef143b9da734945f3b52cb203 /tests/io/stringio1.py
parentbbced3b4bbc8fd7ed7843d39143b6c600adc2c60 (diff)
all: Use the name MicroPython consistently in comments
There were several different spellings of MicroPython present in comments, when there should be only one.
Diffstat (limited to 'tests/io/stringio1.py')
-rw-r--r--tests/io/stringio1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/io/stringio1.py b/tests/io/stringio1.py
index fa50f282e..9f7c1e44e 100644
--- a/tests/io/stringio1.py
+++ b/tests/io/stringio1.py
@@ -36,7 +36,7 @@ print(a.read())
a = io.StringIO()
a.close()
for f in [a.read, a.getvalue, lambda:a.write("")]:
- # CPython throws for operations on closed I/O, micropython makes
+ # CPython throws for operations on closed I/O, MicroPython makes
# the underlying string empty unless MICROPY_CPYTHON_COMPAT defined
try:
f()