diff options
Diffstat (limited to 'unix/unix_mphal.c')
-rw-r--r-- | unix/unix_mphal.c | 2 |
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); } |