summaryrefslogtreecommitdiff
path: root/unix/modtermios.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-08-24 13:19:22 +0100
committerDamien George <damien.p.george@gmail.com>2014-08-24 13:19:22 +0100
commit25fc41dd316c38df3e2a6cfe4b53322d76dc92fc (patch)
tree8e7628041e096f888c3f9b41880c4b9907b5f039 /unix/modtermios.c
parent4f9ebade608e805f0f35e81cd0372d3afdafb900 (diff)
unix, modtermios: Make it properly configurable; fix spelling mistake.
Diffstat (limited to 'unix/modtermios.c')
-rw-r--r--unix/modtermios.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/modtermios.c b/unix/modtermios.c
index b70530355..56e1c5e83 100644
--- a/unix/modtermios.c
+++ b/unix/modtermios.c
@@ -63,7 +63,7 @@ STATIC mp_obj_t mod_termios_tcgetattr(mp_obj_t fd_in) {
cc->items[i] = MP_OBJ_NEW_SMALL_INT(term.c_cc[i]);
} else {
// https://docs.python.org/3/library/termios.html says value is *string*,
- // but now way unicode chars could be there.
+ // but no way unicode chars could be there.
cc->items[i] = mp_obj_new_bytes(&term.c_cc[i], 1);
}
}