From 9b177f3a1cae34384f7f9d6cfdcb9bce9e0fc57f Mon Sep 17 00:00:00 2001 From: Micha Rand <50026101+geojax@users.noreply.github.com> Date: Tue, 11 Jul 2023 17:23:49 -0700 Subject: [PATCH 1/2] Fix erroneous brace There is a typo that makes a block of example code invalid. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8f4d425..5231a5b 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ void Example() else { Debug.Log("Failed to initialise plugin"); - { + } } ``` From 7d14bc40889451b95a500f0002f2022c6a33f0ac Mon Sep 17 00:00:00 2001 From: Micha Rand <50026101+geojax@users.noreply.github.com> Date: Tue, 11 Jul 2023 17:36:45 -0700 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5231a5b..5c2f369 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ void Example() else { Debug.Log("Failed to enable mod management"); - { + } } // The following method will get invoked whenever an event concerning mod management occurs