diff --git a/include/mbedtls/ssl.h b/include/mbedtls/ssl.h
index a839e84d88..606d9c2f5a 100644
--- a/include/mbedtls/ssl.h
+++ b/include/mbedtls/ssl.h
@@ -624,7 +624,7 @@ typedef struct mbedtls_ssl_flight_item mbedtls_ssl_flight_item;
* propagated up the call chain. The callback should
* use \c MBEDTLS_ERR_PK_xxx error codes, and must not
* use \c MBEDTLS_ERR_SSL_xxx error codes except as
- * directed here.
+ * directed in the documentation of this callback.
*/
typedef int mbedtls_ssl_async_sign_t( mbedtls_ssl_context *ssl,
mbedtls_x509_crt *cert,
@@ -690,7 +690,7 @@ typedef int mbedtls_ssl_async_sign_t( mbedtls_ssl_context *ssl,
* propagated up the call chain. The callback should
* use \c MBEDTLS_ERR_PK_xxx error codes, and must not
* use \c MBEDTLS_ERR_SSL_xxx error codes except as
- * directed here.
+ * directed in the documentation of this callback.
*/
typedef int mbedtls_ssl_async_decrypt_t( mbedtls_ssl_context *ssl,
mbedtls_x509_crt *cert,
@@ -738,7 +738,7 @@ typedef int mbedtls_ssl_async_decrypt_t( mbedtls_ssl_context *ssl,
* The SSL handshake is aborted. The callback should
* use \c MBEDTLS_ERR_PK_xxx error codes, and must not
* use \c MBEDTLS_ERR_SSL_xxx error codes except as
- * directed here.
+ * directed in the documentation of this callback.
*/
typedef int mbedtls_ssl_async_resume_t( mbedtls_ssl_context *ssl,
unsigned char *output,