From e33c36a08bcf6cf4ae56992417c74f00de4c92fb Mon Sep 17 00:00:00 2001 From: Inspiaaa Date: Wed, 11 Sep 2024 14:16:28 +0200 Subject: [PATCH] Improve code style in README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e7b278c..2cf1040 100644 --- a/README.md +++ b/README.md @@ -317,7 +317,8 @@ IEnumerator MyCoroutine() { Co.Coroutine(MoveTo(GetLocalMousePosition(), 2)), // Also play the GUI animation while the game is paused. Co.Coroutine(PlayGuiMoveAnimation(), runMode: CoRunMode.Always) - );} + ); +} IEnumerator PlayGuiMoveAnimation() { // ...