From: Dr. David von Oheimb Date: Thu, 14 May 2020 09:27:43 +0000 (+0200) Subject: Re-word null->empty property; improve iteration.count example in property.pod X-Git-Tag: openssl-3.0.0-alpha7~536 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09c2e26e640d78afe7da00d856ab113d9181e098;p=thirdparty%2Fopenssl.git Re-word null->empty property; improve iteration.count example in property.pod Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/11808) --- diff --git a/doc/man7/property.pod b/doc/man7/property.pod index d3fe38157b8..90368b1f8d0 100644 --- a/doc/man7/property.pod +++ b/doc/man7/property.pod @@ -42,9 +42,9 @@ property names like A I is a I pair. A I is a sequence of comma separated properties. There can be any number of properties in a definition. -For example: "" defines a null property definition; "my.foo=bar" -defines a property named I which has a string value I and -"iteration.count=3" defines a property named I which +For example: "" defines an empty property definition (i.e., no restriction); +"my.foo=bar" defines a property named I which has a string value I +and "iteration.count=3" defines a property named I which has a numeric value of I<3>. The full syntax for property definitions appears below. @@ -60,7 +60,7 @@ provider defines I for all of their algorithms. =head2 Queries A I is a single conditional test. -For example, "fips=yes", "provider!=default" or "?iteration.count!=3". +For example, "fips=yes", "provider!=default" or "?iteration.count=3". The first two represent mandatory clauses, such clauses B match for any algorithm to even be under consideration. The third clause represents an optional clause.