From c726051c5cbf9526877c53c2a91f9c25a4fae05c Mon Sep 17 00:00:00 2001 From: Kyle Williams Date: Wed, 11 Jun 2025 11:38:33 -0500 Subject: [PATCH] doc: Fixes typo in README (#406) --- 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;