Replace 'ingoing' -> 'incoming' in CID debug messages
diff --git a/include/mbedtls/ssl.h b/include/mbedtls/ssl.h
index 5acdbd5..8c5dd14 100644
--- a/include/mbedtls/ssl.h
+++ b/include/mbedtls/ssl.h
@@ -3161,7 +3161,7 @@
  *                 (Default: 2^48 - 1)
  *
  *                 Renegotiation is automatically triggered when a record
- *                 counter (outgoing or ingoing) crosses the defined
+ *                 counter (outgoing or incoming) crosses the defined
  *                 threshold. The default value is meant to prevent the
  *                 connection from being closed when the counter is about to
  *                 reached its maximal value (it is not allowed to wrap).
diff --git a/library/ssl_tls.c b/library/ssl_tls.c
index 5cb15f5..4d41d83 100644
--- a/library/ssl_tls.c
+++ b/library/ssl_tls.c
@@ -964,7 +964,7 @@
 
         MBEDTLS_SSL_DEBUG_BUF( 3, "Outgoing CID", transform->out_cid,
                                transform->out_cid_len );
-        MBEDTLS_SSL_DEBUG_BUF( 3, "Ingoing CID", transform->in_cid,
+        MBEDTLS_SSL_DEBUG_BUF( 3, "Incoming CID", transform->in_cid,
                                transform->in_cid_len );
     }
 #endif /* MBEDTLS_SSL_CID */