summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--extmod/modussl_axtls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/modussl_axtls.c b/extmod/modussl_axtls.c
index 9c5722b128..4d8440a89c 100644
--- a/extmod/modussl_axtls.c
+++ b/extmod/modussl_axtls.c
@@ -113,7 +113,7 @@ STATIC mp_uint_t socket_read(mp_obj_t o_in, void *buf, mp_uint_t size, int *errc
mp_int_t r = ssl_read(o->ssl_sock, &o->buf);
if (r == SSL_OK) {
// SSL_OK from ssl_read() means "everything is ok, but there's
- // not user data yet. So, we just keep reading.
+ // no user data yet". So, we just keep reading.
continue;
}
if (r < 0) {