From 37da0977378c616e40b45a740bd8d371a2f4bb58 Mon Sep 17 00:00:00 2001 From: akarnokd Date: Thu, 14 Jun 2018 12:13:06 +0200 Subject: [PATCH] 4.x: Add missing state XML comment --- Rx.NET/Source/src/System.Reactive/Concurrency/AsyncLock.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Rx.NET/Source/src/System.Reactive/Concurrency/AsyncLock.cs b/Rx.NET/Source/src/System.Reactive/Concurrency/AsyncLock.cs index faa5332a01..55f4f09b0b 100644 --- a/Rx.NET/Source/src/System.Reactive/Concurrency/AsyncLock.cs +++ b/Rx.NET/Source/src/System.Reactive/Concurrency/AsyncLock.cs @@ -37,6 +37,7 @@ public void Wait(Action action) /// processed by the owner. /// /// Action to queue for execution. + /// The state to pass to the action when it gets invoked under the lock. /// is null. /// In case TState is a value type, this operation will involve boxing of . /// However, this is often an improvement over the allocation of a closure object and a delegate.