From dd7a6f591d439ac4fc5295fee8b14c8765d32161 Mon Sep 17 00:00:00 2001 From: Kyle Date: Wed, 9 Apr 2025 21:49:11 -0500 Subject: [PATCH] doc: Fixes typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f8a0e3..0d39913 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ If you like this project, please consider donating to one of the funds that help #include #include - enum class Color : { RED = -10, BLUE = 0, GREEN = 10 }; + enum class Color { RED = -10, BLUE = 0, GREEN = 10 }; int main() { Color c1 = Color::RED;