From 8a23012e40f91bf359bb5a43dac055ecca5a2e6d Mon Sep 17 00:00:00 2001 From: Hugo Pointcheval Date: Tue, 5 Dec 2023 14:08:47 +0100 Subject: [PATCH] fix: add missing braces --- MathLib/Math.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MathLib/Math.cs b/MathLib/Math.cs index cf20757..98984eb 100644 --- a/MathLib/Math.cs +++ b/MathLib/Math.cs @@ -25,4 +25,5 @@ public class Math public float Add(float a, float b) { return a + b; - } \ No newline at end of file + } +}