From 93df9d76937338ed482da14c043cb5d97a0978cb Mon Sep 17 00:00:00 2001 From: neuecc Date: Sun, 21 Jun 2020 23:11:47 +0900 Subject: [PATCH] Prevent -> Preserve in ReadMe --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9576449..82baccc 100644 --- a/README.md +++ b/README.md @@ -208,7 +208,7 @@ await task; await task; // NG, throws Exception ``` -Store to the class field, you can use `UniTask.Lazy` that gurantee call multipletimes. `.Prevent()` allows for multiple calls (internally cached results). This is useful when multiple calls in a function scope. +Store to the class field, you can use `UniTask.Lazy` that gurantee call multipletimes. `.Preserve()` allows for multiple calls (internally cached results). This is useful when multiple calls in a function scope. Cancellation and Exception handling ---