From 0d1b136b5041cb28cc89e207b894b18ebb592e98 Mon Sep 17 00:00:00 2001 From: Michael J Ward Date: Thu, 18 Feb 2021 23:13:20 -0600 Subject: [PATCH] fixes 'learn more about multiplexing' in docs --- src/multiplex/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/multiplex/mod.rs b/src/multiplex/mod.rs index 32e80dc..918d794 100644 --- a/src/multiplex/mod.rs +++ b/src/multiplex/mod.rs @@ -3,7 +3,7 @@ //! them. This allows the server to process requests out-of-order, and eliminates the //! application-level head-of-line blocking that pipelined protocols suffer from. Example //! multiplexed protocols include SSH, HTTP/2, and AMQP. [This -//! page](http://250bpm.com/multiplexing) has some further details about how multiplexing protocols +//! page](https://250bpm.com/blog:18/) has some further details about how multiplexing protocols //! operate. //! //! Note: multiplexing with the max number of in-flight requests set to 1 implies that for each