From e52edd84fd654f291517f017610ed6ddbc69df90 Mon Sep 17 00:00:00 2001 From: Julien Couvreur Date: Thu, 28 Sep 2017 21:42:43 -0700 Subject: [PATCH] Fix typo in INotifyCompletion API in doc (#22417) --- docs/features/task-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/features/task-types.md b/docs/features/task-types.md index d31903f5d96..419d9b1d2d1 100644 --- a/docs/features/task-types.md +++ b/docs/features/task-types.md @@ -21,7 +21,7 @@ class Awaiter : INotifyCompletion { public bool IsCompleted { get; } public T GetResult(); - public void OnCompletion(Action completion); + public void OnCompleted(Action completion); } ``` ## Builder Type -- GitLab