From 735a16c6c2d2e57751bccceb0d1ca0298f116ec8 Mon Sep 17 00:00:00 2001 From: Friedrich von Never Date: Mon, 2 Sep 2019 23:42:54 +0700 Subject: [PATCH] Fix a comment (#18) --- Emulsion/Lifetimes.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Emulsion/Lifetimes.fs b/Emulsion/Lifetimes.fs index b17e7098..4024adcd 100644 --- a/Emulsion/Lifetimes.fs +++ b/Emulsion/Lifetimes.fs @@ -19,7 +19,7 @@ and Lifetime(token: CancellationToken) = token.Register action |> ignore /// Schedules a termination action, and returns an IDisposable. Whenever this instance is disposed, the action will - /// be removed from scheduled on cancellation. + /// be removed from the list of actions scheduled on the lifetime termination. member __.OnTerminationRemovable(action: Action): IDisposable = upcast token.Register action