unix/unix_mphal: Typo fix in comment.

This commit is contained in:
Paul Sokolovsky 2015-11-02 00:22:55 +03:00
parent 32b3549cce
commit 06f70973f7
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}