]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix typos and whitespace
authorLeonabcd123 <156839416+Leonabcd123@users.noreply.github.com>
Thu, 28 Aug 2025 08:46:13 +0000 (11:46 +0300)
committerNeil Horman <nhorman@openssl.org>
Sat, 30 Aug 2025 13:38:01 +0000 (09:38 -0400)
Added "the" before "use"
Add missing whitespace
Removed unnecessary apostrophe in FIPS.md

CLA: trivial

Reviewed-by: Paul Yang <paulyang.inf@gmail.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Neil Horman <nhorman@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/28362)

README-FIPS.md
README-QUIC.md

index 5b4aeca6e35cdcfaa40a79ff7ba56afc62db218f..160234518dbf7c99412d336202ff2e7036d8aa8d 100644 (file)
@@ -18,7 +18,7 @@ See <https://www.openssl.org/source/> for information related to OpenSSL
 FIPS certificates and Security Policies.
 
 Newer OpenSSL Releases that include security or bug fixes can be used to build
-all other components (such as the core API's, TLS and the default, base and
+all other components (such as the core APIs, TLS and the default, base and
 legacy providers) without any restrictions, but the FIPS provider must be built
 as specified in the Security Policy (normally with a different version of the
 source code).
index 68d31a6941402cc4de7432b6c91a88611a7861cd..451c15d52404fe7bb89819b6f0004f4251a0f5a3 100644 (file)
@@ -12,7 +12,7 @@ some of the following resources:
 - The [OpenSSL Guide] incorporates various code samples. The complete source
   for these can be [found in the source tree under `demos/guide`](./demos/guide/).
 - The [openssl-quic(7) manual page], which provides a basic reference overview
-  of QUIC functionality and how use of QUIC differs from use of TLS with regard
+  of QUIC functionality and how the use of QUIC differs from the use of TLS with regard
   to our API.
 - The [Demo-Driven Design (DDD)][DDD] demos, which demonstrate the use of QUIC
   using simple examples. These can be [found in the source tree under
@@ -61,7 +61,7 @@ $ openssl s_client -quic -alpn myalpn -connect host:port
 
 In the above example replace `host` with the hostname of the server (e.g.
 `www.example.com`) and `port` with the port for the server (e.g. `443`). Replace
-`myalpn` with the Application Layer Protocol to use (e.g.`h3` represents
+`myalpn` with the Application Layer Protocol to use (e.g. `h3` represents
 HTTP/3). IANA maintains a standard list of [ALPN ids] that can be used.
 
 This example connects to a QUIC server and opens a single bidirectional stream.