From dcecdfd620511e0c662181b93fc96b070887ceee Mon Sep 17 00:00:00 2001 From: Adam Langley Date: Thu, 12 Jan 2017 10:34:41 -0800 Subject: [PATCH] Fix a couple of missing spaces in comments. Change-Id: If8b5dea31d7f37b3b33ea41e7a6a33240cb5ee5b Reviewed-on: https://boringssl-review.googlesource.com/13121 Reviewed-by: Adam Langley --- include/openssl/ec.h | 2 +- include/openssl/pool.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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