From 32b5a19684d8bac9300aec6ff68c2c2a03ca891c Mon Sep 17 00:00:00 2001 From: snazzybytes <72365181+snazzybytes@users.noreply.github.com> Date: Mon, 17 Jun 2024 09:19:00 -0400 Subject: [PATCH] Update broken "channels" link (#2146) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Stumbled upon another broken link. Courtesy fix 🫡 --- src/concurrency/async-control-flow/channels.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/concurrency/async-control-flow/channels.md b/src/concurrency/async-control-flow/channels.md index 72678464..5db70afb 100644 --- a/src/concurrency/async-control-flow/channels.md +++ b/src/concurrency/async-control-flow/channels.md @@ -39,7 +39,7 @@ async fn main() { - Change the channel size to `3` and see how it affects the execution. - Overall, the interface is similar to the `sync` channels as seen in the - [morning class](concurrency/channels.md). + [morning class](../channels.md). - Try removing the `std::mem::drop` call. What happens? Why?