diff --git a/include/openssl/ec.h b/include/openssl/ec.h index c39317e7a..a1cd5c71f 100644 --- a/include/openssl/ec.h +++ b/include/openssl/ec.h @@ -273,7 +273,7 @@ OPENSSL_EXPORT int EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx); /* EC_POINT_invert sets |a| equal to minus |a|. It returns one on success and - * zero otherwise. If |ctx| is not NULL, it may be used.*/ + * zero otherwise. If |ctx| is not NULL, it may be used. */ OPENSSL_EXPORT int EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx); diff --git a/include/openssl/pool.h b/include/openssl/pool.h index 23debf0e8..dc5c938eb 100644 --- a/include/openssl/pool.h +++ b/include/openssl/pool.h @@ -26,7 +26,7 @@ extern "C" { * * |CRYPTO_BUFFER|s are simply reference-counted blobs. A |CRYPTO_BUFFER_POOL| * is an intern table for |CRYPTO_BUFFER|s. This allows for a single copy of a - * given blob to be kept in memory and referenced from multiple places.*/ + * given blob to be kept in memory and referenced from multiple places. */ /* CRYPTO_BUFFER_POOL_new returns a freshly allocated |CRYPTO_BUFFER_POOL| or