diff --git a/docs/articles/tips.md b/docs/articles/tips.md index 4554b21..a8828ae 100644 --- a/docs/articles/tips.md +++ b/docs/articles/tips.md @@ -50,7 +50,7 @@ IEnumerator LoadAll() object2.Load(); // Start loading object3 object3.Load(); - // {ause the coroutine until they are all loaded + // Pause the coroutine until they are all loaded yield return new WaitUntil(() => object1.IsLoaded && object2.IsLoaded && object3.IsLoaded); } ```