summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-10-27 22:12:59 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-10-27 22:13:45 +0300
commit8a49905a2f268255cba7f7deb6c334b830d5943a (patch)
tree45c40caf6ca10ef2131ae8ce5be8844b6b31e82d
parent52aa532050baa4239e1920144ecf1d0588fc672e (diff)
downloadmicropython-8a49905a2f268255cba7f7deb6c334b830d5943a.tar.gz
micropython-8a49905a2f268255cba7f7deb6c334b830d5943a.zip
py/stream: Typo fix in comment.
-rw-r--r--py/stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/stream.c b/py/stream.c
index cc8a63ac2e..dadfcf5d62 100644
--- a/py/stream.c
+++ b/py/stream.c
@@ -391,7 +391,7 @@ STATIC mp_obj_t stream_unbuffered_readline(size_t n_args, const mp_obj_t *args)
if (mp_is_nonblocking_error(error)) {
if (vstr.len == 1) {
// We just incremented it, but otherwise we read nothing
- // and immediately got EAGAIN. This is case is not well
+ // and immediately got EAGAIN. This case is not well
// specified in
// https://docs.python.org/3/library/io.html#io.IOBase.readline
// unlike similar case for read(). But we follow the latter's