readme: add some readability pauses (#1380)

See https://github.com/rustls/rustls/pull/1380#issuecomment-1660649621
This commit is contained in:
Tshepang Mbambo 2023-08-02 09:45:37 +02:00 committed by GitHub
parent 1776e0ba3b
commit 79de94221f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -81,11 +81,11 @@ need them.
### Platform support
While Rustls itself is platform independent it uses
While Rustls itself is platform independent, it uses
[`ring`](https://crates.io/crates/ring) for implementing the cryptography in
TLS. As a result, rustls only runs on platforms
supported by `ring`. At the time of writing this means x86, x86-64, armv7, and
aarch64. For more information see [the supported `ring` CI
supported by `ring`. At the time of writing, this means x86, x86-64, armv7, and
aarch64. For more information, see [the supported `ring` CI
targets](https://github.com/briansmith/ring/blob/9cc0d45f4d8521f467bb3a621e74b1535e118188/.github/workflows/ci.yml#L151-L167).
Rustls requires Rust 1.60 or later.

View File

@ -54,11 +54,11 @@
//!
//! ### Platform support
//!
//! While Rustls itself is platform independent it uses
//! While Rustls itself is platform independent, it uses
//! [`ring`](https://crates.io/crates/ring) for implementing the cryptography in
//! TLS. As a result, rustls only runs on platforms
//! supported by `ring`. At the time of writing this means x86, x86-64, armv7, and
//! aarch64. For more information see [the supported `ring` CI
//! supported by `ring`. At the time of writing, this means x86, x86-64, armv7, and
//! aarch64. For more information, see [the supported `ring` CI
//! targets](https://github.com/briansmith/ring/blob/9cc0d45f4d8521f467bb3a621e74b1535e118188/.github/workflows/ci.yml#L151-L167).
//!
//! Rustls requires Rust 1.60 or later.