From 3f37050e33c47b246b530ef01f0b0bda9126581c Mon Sep 17 00:00:00 2001 From: Jakub Zelenka Date: Sun, 8 Sep 2019 17:32:07 +0100 Subject: [PATCH] Fix typos in the OSSL_METHOD_STORE doc Reviewed-by: Paul Yang Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/9825) --- doc/internal/man3/OSSL_METHOD_STORE.pod | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/internal/man3/OSSL_METHOD_STORE.pod b/doc/internal/man3/OSSL_METHOD_STORE.pod index afd1dd5982..f178a0ee75 100644 --- a/doc/internal/man3/OSSL_METHOD_STORE.pod +++ b/doc/internal/man3/OSSL_METHOD_STORE.pod @@ -76,7 +76,7 @@ the B. ossl_method_store_remove() removes the B identified by B from the B. -ossl_method_store_fetch() queries B for an method identified by B +ossl_method_store_fetch() queries B for a method identified by B that matches the property query B. The result, if any, is returned in B. @@ -88,24 +88,24 @@ and the ones passed to the ossl_method_store_free(). =head2 Cache Functions ossl_method_store_cache_get() queries the cache associated with the B -for an method identified by B that matches the property query +for a method identified by B that matches the property query B. The result, if any, is returned in B. ossl_method_store_cache_set() sets a cache entry identified by B with the property query B in the B. -Future cache gets will return the specified B. +Future calls to ossl_method_store_cache_get() will return the specified B. =head1 RETURN VALUES -ossl_method_store_new() a new method store object or B on failure. +ossl_method_store_new() returns a new method store object or B on failure. ossl_method_store_free(), ossl_method_store_add(), ossl_method_store_remove(), ossl_method_store_fetch(), ossl_method_store_set_global_properties(), ossl_method_store_cache_get() and ossl_method_store_cache_set() return B<1> on success and B<0> on error. -ossl_method_store_free() and ossl_method_store_cleanup() do not return values. +ossl_method_store_free() and ossl_method_store_cleanup() do not return any value. =head1 HISTORY -- 2.25.1