From 1c1bef053f1ae680b244153b7b1a7f26e158d950 Mon Sep 17 00:00:00 2001 From: Finomnis Date: Wed, 7 Feb 2024 12:20:20 +0100 Subject: [PATCH] Minor doc beautification --- src/subsystem/nested_subsystem.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/subsystem/nested_subsystem.rs b/src/subsystem/nested_subsystem.rs index eaf5fc9..8b975fe 100644 --- a/src/subsystem/nested_subsystem.rs +++ b/src/subsystem/nested_subsystem.rs @@ -86,7 +86,7 @@ impl NestedSubsystem { /// Returns a future that resolves once the subsystem is finished. /// /// Similar to [`join`](NestedSubsystem::join), but more light-weight - /// as does not perform any error handling. + /// as it does not return any information about subsystem errors. pub fn finished(&self) -> SubsystemFinishedFuture { SubsystemFinishedFuture::new(self.joiner.clone()) }