Fix missing comma in FAQ.md (#3134)

This commit is contained in:
András Kucsma 2020-04-17 18:50:33 +02:00 committed by GitHub
parent 9f9ff84ba1
commit 388bf66247
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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();
```