From ab0205b38c3896b4f466478ad1f73aabca4f1dab Mon Sep 17 00:00:00 2001 From: Inspiaaa Date: Wed, 11 Sep 2024 14:17:51 +0200 Subject: [PATCH] Fix inconsistent indent in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2cf1040..afef7af 100644 --- a/README.md +++ b/README.md @@ -212,12 +212,12 @@ IEnumerator MyCoroutine() { // Same as above. yield return Co.Coroutine(PlayAnimation()); - // Spawn a WaitDelayCoroutine and wait for it to complete. + // Spawn a WaitDelayCoroutine and wait for it to complete. yield return Co.Wait(2); } IEnumerator PlayAnimation() { - // ... + // ... } ```