From 344ae0738cb410f12b2a8cbaa2495b04bd8bca7c Mon Sep 17 00:00:00 2001 From: neuecc Date: Thu, 11 Jun 2020 08:44:42 +0000 Subject: [PATCH 1/3] docs: update TOC --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f482653..5d5286e 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ Provides an efficient async/await integration to Unity. - [Awaitable Events](#awaitable-events) - [Channel](#channel) - [For Unit Testing](#for-unit-testing) +- [Compare with Standard Task API](#compare-with-standard-task-api) - [Pooling Configuration](#pooling-configuration) - [API References](#api-references) - [UPM Package](#upm-package) From d081e5f40b1a1c369f3fa449a4f5984eeffdfbf2 Mon Sep 17 00:00:00 2001 From: Yoshifumi Kawai Date: Thu, 11 Jun 2020 17:48:41 +0900 Subject: [PATCH 2/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5d5286e..16f37ad 100644 --- a/README.md +++ b/README.md @@ -687,7 +687,7 @@ UniTask has many standard Task-like APIs. This table shows what is the alternati Use standard type. | .NET Type | UniTask Type | -| --- | --- | --- | +| --- | --- | | `IProgress` | --- | | `CancellationToken` | --- | | `CancellationTokenSource` | --- | @@ -695,7 +695,7 @@ Use standard type. Use UniTask type. | .NET Type | UniTask Type | -| --- | --- | --- | +| --- | --- | | `Task`/`ValueTask` | `UniTask` | | `Task`/`ValueTask` | `UniTask` | | `void` | `UniTaskVoid` | From 7e5e6ed6c2e7e90032489c7f8f856b334fd391b0 Mon Sep 17 00:00:00 2001 From: Yoshifumi Kawai Date: Thu, 11 Jun 2020 20:21:51 +0900 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 16f37ad..fc107d1 100644 --- a/README.md +++ b/README.md @@ -698,7 +698,7 @@ Use UniTask type. | --- | --- | | `Task`/`ValueTask` | `UniTask` | | `Task`/`ValueTask` | `UniTask` | -| `void` | `UniTaskVoid` | +| `async void` | `async UniTaskVoid` | | --- | `UniTaskCompletionSource` | | `TaskCompletionSource` | `UniTaskCompletionSource`/`AutoResetUniTaskCompletionSource` | | `ManualResetValueTaskSourceCore` | `UniTaskCompletionSourceCore` |