From 3e863e690362b5c2ad625f98af20cd6412ce00be Mon Sep 17 00:00:00 2001 From: Benjamin Saunders Date: Fri, 5 Jul 2019 21:35:17 -0700 Subject: [PATCH] Remove outdated documentation --- quinn/src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/quinn/src/lib.rs b/quinn/src/lib.rs index a5412ad3d..523f3c1f4 100644 --- a/quinn/src/lib.rs +++ b/quinn/src/lib.rs @@ -6,9 +6,6 @@ //! //! The entry point of this crate is the [`Endpoint`](struct.Endpoint.html). //! -//! The futures and streams defined in this crate are not `Send` because they necessarily share -//! state with each other. As a result, they must be spawned on a single-threaded tokio runtime. -//! //! ``` //! # extern crate tokio; //! # extern crate quinn;