commit | 388bf66247bc17cddb704d6e6421cf872bc3f964 | [log] [tgz] |
---|---|---|
author | AndrĂ¡s Kucsma <r0maikx02b@gmail.com> | Fri Apr 17 18:50:33 2020 +0200 |
committer | GitHub <noreply@github.com> | Fri Apr 17 18:50:33 2020 +0200 |
tree | efa1c9c6810ccbef738dffa1a88fda44e24345e8 | |
parent | 9f9ff84ba145d30b21641deca34055b18b183cf3 [diff] |
Fix missing comma in FAQ.md (#3134)
diff --git a/docs/FAQ.md b/docs/FAQ.md index 3d73a0f..6c14076 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md
@@ -168,7 +168,7 @@ - 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(); ```