From 5902e4c822b72b3a03542730fb1af825698af9df Mon Sep 17 00:00:00 2001 From: DingusMcChicken Date: Sat, 4 Oct 2025 21:16:20 -0800 Subject: [PATCH] Remove Extra Parenthesis There was an extra parenthesis in one of the code blocks. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 802e5be..307cf89 100644 --- a/README.md +++ b/README.md @@ -202,7 +202,7 @@ CLAY(CLAY_ID("parent"), { .layout = { .padding = CLAY_PADDING_ALL(8) } }) { // Child element 1 CLAY_TEXT(CLAY_STRING("Hello World"), CLAY_TEXT_CONFIG({ .fontSize = 16 })); // Child element 2 with red background - CLAY((CLAY_ID("child"), { .backgroundColor = COLOR_RED }) { + CLAY(CLAY_ID("child"), { .backgroundColor = COLOR_RED }) { // etc } }