From b13cf47fbf71afcf1a33af08af76efcfd9473a3b Mon Sep 17 00:00:00 2001 From: max Date: Sun, 2 Jan 2022 15:21:39 +0100 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 67f4da4..7ab621d 100644 --- a/README.md +++ b/README.md @@ -16,10 +16,10 @@ public class MyBehaviour : MonoBehaviour, IValidatable #if UNITY_EDITOR public void Validate(Report report) { - // Check if health is valid. + // Check if health is valid. if(startHealth <= 0) { - // If not, log it. + // If not, log it. report.Log(this, WarningType.Warning, ReportCategories.Design, $"{nameof(startHealth)} is to low", $"Make value > 0"); } } @@ -44,4 +44,4 @@ Run the validator: ## LICENSE -Overall package is licensed under [MIT](/LICENSE.md), unless otherwise noted in the [3rd party licenses](/THIRD%20PARTY%20NOTICES.md) file and/or source code. \ No newline at end of file +Overall package is licensed under [MIT](/LICENSE.md), unless otherwise noted in the [3rd party licenses](/THIRD%20PARTY%20NOTICES.md) file and/or source code.