summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-11-02 00:22:55 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-11-03 00:36:46 +0300
commit06f70973f7cbbb9b64d8fe3990a2addc5c3329fd (patch)
tree577518e6b6f47d7c890b579f525eca915112f229
parent32b3549cce7a965d92a81db02c7adc973f08d74c (diff)
downloadmicropython-06f70973f7cbbb9b64d8fe3990a2addc5c3329fd.tar.gz
micropython-06f70973f7cbbb9b64d8fe3990a2addc5c3329fd.zip
unix/unix_mphal: Typo fix in comment.
-rw-r--r--unix/unix_mphal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/unix_mphal.c b/unix/unix_mphal.c
index 308349c60e..4d7c7aa053 100644
--- a/unix/unix_mphal.c
+++ b/unix/unix_mphal.c
@@ -110,7 +110,7 @@ void mp_hal_stdout_tx_strn(const char *str, mp_uint_t len) {
(void)ret; // to suppress compiler warning
}
-// cooked is same as uncooked because they terminal does some postprocessing
+// cooked is same as uncooked because the terminal does some postprocessing
void mp_hal_stdout_tx_strn_cooked(const char *str, mp_uint_t len) {
mp_hal_stdout_tx_strn(str, len);
}