diff --git a/features/netsocket/TLSSocket.h b/features/netsocket/TLSSocket.h index 0630d2c156..50005da55e 100644 --- a/features/netsocket/TLSSocket.h +++ b/features/netsocket/TLSSocket.h @@ -37,8 +37,8 @@ /** * \brief TLSSocket a wrapper around TCPSocket for interacting with TLS servers. * - * TLSSocket uses the TLSSocketWrapper with internal TCP socket. This is a - * easy to use helper for creating commonly used TLS connection over TCP. + * TLSSocket uses the TLSSocketWrapper with internal TCP socket. + * This is a helper for creating commonly used TLS connection over TCP. * */ class TLSSocket : public TLSSocketWrapper { diff --git a/features/netsocket/TLSSocketWrapper.h b/features/netsocket/TLSSocketWrapper.h index 3b56718798..b705eadbe6 100644 --- a/features/netsocket/TLSSocketWrapper.h +++ b/features/netsocket/TLSSocketWrapper.h @@ -35,7 +35,7 @@ #if defined(MBEDTLS_SSL_CLI_C) || defined(DOXYGEN_ONLY) /** - * TLSSocket a wrapper around Socket for interacting with TLS servers. + * TLSSocket is a wrapper around Socket for interacting with TLS servers. * * TLSSocketWrapper can use any Socket as a transport and after * completing the TLS handshake, can be used as any Socket would be used.