diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-11-07 00:29:08 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-11-07 00:30:08 +0300 |
commit | 8bfa11b138d1f0e15b0ac87d02c9b43c60b18415 (patch) | |
tree | 52bad114683da2d6f439b11ded0bb24aa7d6b0e4 | |
parent | 8cee03b118850bc5d6cd9f1269f91af14e5f724f (diff) | |
download | micropython-8bfa11b138d1f0e15b0ac87d02c9b43c60b18415.tar.gz micropython-8bfa11b138d1f0e15b0ac87d02c9b43c60b18415.zip |
minimal: Clarify comments.
-rw-r--r-- | minimal/uart_extra.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/minimal/uart_extra.c b/minimal/uart_extra.c index 1c3fc2e033..9b70f74867 100644 --- a/minimal/uart_extra.c +++ b/minimal/uart_extra.c @@ -5,11 +5,11 @@ /* * Extra UART functions - * These can be either optimized for a particular port, or reference, - * not very optimal implementation below can be used. + * These can be either optimized for a particular port, or reference + * implementation below can be used. */ -// Send "cooked" string of length, where every occurance of +// Send "cooked" string of given length, where every occurance of // LF character is replaced with CR LF. void mp_hal_stdout_tx_strn_cooked(const char *str, mp_uint_t len) { while (len--) { |