Update sha1.h
Changes based on review comments
diff --git a/include/mbedtls/sha1.h b/include/mbedtls/sha1.h
index 4a43c01..d8ce3c6 100644
--- a/include/mbedtls/sha1.h
+++ b/include/mbedtls/sha1.h
@@ -97,8 +97,8 @@
* constitutes a security risk. We recommend considering
* stronger message digests instead.
*
- * \param dst The destination context.
- * \param src The context to clone.
+ * \param dst The SHA-1 context to clone to.
+ * \param src The SHA-1 context to clone from.
*
*/
void mbedtls_sha1_clone( mbedtls_sha1_context *dst,
@@ -111,7 +111,7 @@
* constitutes a security risk. We recommend considering
* stronger message digests instead.
*
- * \param ctx The context to initialize.
+ * \param ctx The SHA-1 context to initialize.
*
* \return \c 0 on success.
*
@@ -183,7 +183,7 @@
*
* \deprecated Superseded by mbedtls_sha1_starts_ret() in 2.7.0.
*
- * \param ctx The context to initialize.
+ * \param ctx The SHA-1 context to initialize.
*
*/
MBEDTLS_DEPRECATED void mbedtls_sha1_starts( mbedtls_sha1_context *ctx );