From ad7fd214c28231dcd84d0bd4fd3c6846e95ad6ff Mon Sep 17 00:00:00 2001 From: shinriyo Date: Wed, 30 Jul 2014 12:17:13 +0900 Subject: [PATCH] fix typo correct word is completion --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 38d1974..77f89d1 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Iterator Tasks is a iterator-based coroutine class library. One of the purpose of Iterator Tasks is to simplify asynchronous operations on Unity 3D game engine. Unity is built on Mono, open source .NET development framework. It however uses older version which correspond approximately to .NET Framework 3.5 and C# 3.0. Thus, there is no Task class and async/await support. -Alternatively, Unity provides iterator-based coroutine framework for asynchronous operation. For example, following code awaits web access completoin without blocking a thread by using a yield return statement. +Alternatively, Unity provides iterator-based coroutine framework for asynchronous operation. For example, following code awaits web access completion without blocking a thread by using a yield return statement. ```c# using UnityEngine;