From 95797738f843cd2f9e58480a08b6328b0e7b9639 Mon Sep 17 00:00:00 2001 From: Finomnis Date: Tue, 21 Jan 2025 23:14:43 +0100 Subject: [PATCH] Fix comment --- src/runner.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/runner.rs b/src/runner.rs index c7f7dc8..6cbcd1f 100644 --- a/src/runner.rs +++ b/src/runner.rs @@ -88,8 +88,9 @@ where // Retrieve the handle that was passed into the subsystem. // Originally it was intended to pass the handle as reference, but due - // to complications (https://stackoverflow.com/questions/77172947/async-lifetime-issues-of-pass-by-reference-parameters) - // it was decided to pass ownership instead. + // to complications (https://stackoverflow.com/a/70592053/2902833 and + // https://github.com/tokio-rs/tokio/issues/3162) it was decided to + // pass ownership instead. // // It is still important that the handle does not leak out of the subsystem. let subsystem_handle = match redirected_subsystem_handle.try_recv() {