From 388bf66247bc17cddb704d6e6421cf872bc3f964 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Kucsma?= Date: Fri, 17 Apr 2020 18:50:33 +0200 Subject: [PATCH] Fix missing comma in FAQ.md (#3134) --- docs/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index 3d73a0f4..6c140760 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -168,7 +168,7 @@ Unique ID are implicitly built from the hash of multiple elements that identify - Unique ID are often derived from a string label and at minimum scoped within their host window: ```c Begin("MyWindow"); -Button("OK"); // Label = "OK", ID = hash of ("MyWindow" "OK") +Button("OK"); // Label = "OK", ID = hash of ("MyWindow", "OK") Button("Cancel"); // Label = "Cancel", ID = hash of ("MyWindow", "Cancel") End(); ```