fix various comment issues
Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
diff --git a/library/ssl_misc.h b/library/ssl_misc.h
index e16c674..7035c27 100644
--- a/library/ssl_misc.h
+++ b/library/ssl_misc.h
@@ -132,10 +132,10 @@
#define MBEDTLS_SSL_EXT_KEY_SHARE ( 1 << 21 )
/*
- * Helper macros for function call with returen check.
+ * Helper macros for function call with return check.
*/
/*
- * Exit and print debug message when return none zero value
+ * Exit when return non-zero value
*/
#define MBEDTLS_SSL_PROC_CHK( f ) \
do { \
@@ -146,7 +146,7 @@
} \
} while( 0 )
/*
- * Exit and print debug message when return negative value
+ * Exit when return negative value
*/
#define MBEDTLS_SSL_PROC_CHK_NEG( f ) \
do { \