mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 12:10:13 +01:00
all: Fix spelling mistakes based on codespell check.
Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
@@ -407,7 +407,7 @@ static void telnet_process (void) {
|
||||
_i16 rxLen;
|
||||
_i16 maxLen = (telnet_data.rxWindex >= telnet_data.rxRindex) ? (TELNET_RX_BUFFER_SIZE - telnet_data.rxWindex) :
|
||||
((telnet_data.rxRindex - telnet_data.rxWindex) - 1);
|
||||
// to avoid an overrrun
|
||||
// to avoid an overrun
|
||||
maxLen = (telnet_data.rxRindex == 0) ? (maxLen - 1) : maxLen;
|
||||
|
||||
if (maxLen > 0) {
|
||||
|
||||
Reference in New Issue
Block a user