From: Paul Yang Date: Mon, 23 Oct 2017 17:35:31 +0000 (+0800) Subject: Fix doc-nits in doc/man3/DEFINE_STACK_OF.pod X-Git-Tag: OpenSSL_1_1_0g~21 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2e6d51d7674eacfd1941e910a56c6897443a9c19;p=openssl Fix doc-nits in doc/man3/DEFINE_STACK_OF.pod to to match the var name in function prototype Reviewed-by: Paul Dale Reviewed-by: Andy Polyakov Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/4559) (cherry picked from commit d9c989fe3f137580ee627c91e01245e78b0b41ff) --- diff --git a/doc/crypto/DEFINE_STACK_OF.pod b/doc/crypto/DEFINE_STACK_OF.pod index fbd43f9706..f655f84eea 100644 --- a/doc/crypto/DEFINE_STACK_OF.pod +++ b/doc/crypto/DEFINE_STACK_OF.pod @@ -94,12 +94,12 @@ B. sk_TYPE_value() returns element B in B, where B starts at zero. If B is out of range then B is returned. -sk_TYPE_new() allocates a new empty stack using comparison function B. -If B is B then no comparison function is used. +sk_TYPE_new() allocates a new empty stack using comparison function B. +If B is B then no comparison function is used. sk_TYPE_new_null() allocates a new empty stack with no comparison function. -sk_TYPE_set_cmp_func() sets the comparison function of B to B. +sk_TYPE_set_cmp_func() sets the comparison function of B to B. The previous comparison function is returned or B if there was no previous comparison function.