Skip to content

Commit e6d87f7

Browse files
committed
Nits.
1 parent 2a5a5a5 commit e6d87f7

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

quinn/src/lib.rs

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@
4949
//!
5050
//! ### Miscellaneous features
5151
//!
52-
//! Miscellaneous optional features.
53-
//!
5452
//! - `bloom`: Enabled by default. Enables `BloomTokenLog`, and uses it by default.
5553
//! - `platform-verifier`: Enabled by default. Provides `ClientConfig::with_platform_verifier()` convenience method.
5654
//! - `futures-io`: Enables `futures::io::{AsyncRead, AsyncWrite}` support for streams.
@@ -68,8 +66,8 @@
6866
//! ### Crypto features
6967
//!
7068
//! The three supported rustls backends are rustls+ring, rustls+aws-lc-rs and rustls+aws-lc-rs-fips.
71-
//! Note the feature defaults for rustls is to use aws-lc-rs and the default for quinn is to use ring. This means you might
72-
//! want `default-features = false` one one library or the other if you don't intend to use multiple rustls backends.
69+
//! Note the feature default for rustls is to use aws-lc-rs and the default for quinn is to use ring. This means you might
70+
//! want `default-features = false` on one library or the other if you don't intend to use multiple rustls backends.
7371
//!
7472
//! - `rustls-ring`: Enables ring crypto backend for quinn and rustls. Requires the `ring` feature.
7573
//! - `ring`: Will enable ring for quinn only. Generally used with `rustls-ring`.
@@ -85,9 +83,9 @@
8583
//! smol runtime features enabled. If you're using a different or custom runtime you'll need to use `Endpoint::new` and
8684
//! pass in a `Arc<dyn Runtime>` directly.
8785
//!
88-
//! - `runtime-tokio` - Enable integration with the tokio async runtime.
89-
//! - `runtime-smol` - Enable integration with the smol runtime.
90-
//! - `smol` - Also enable integration with the smol runtime.
86+
//! - `runtime-tokio`: Enable integration with the tokio async runtime.
87+
//! - `runtime-smol`: Enable integration with the smol runtime.
88+
//! - `smol`: Also enable integration with the smol runtime.
9189
//! - `async-io`: Also required to enable integration with the smol runtime.
9290
#![warn(missing_docs)]
9391
#![warn(unreachable_pub)]

0 commit comments

Comments
 (0)