瀏覽代碼

Fix missing comma in FAQ.md (#3134)

András Kucsma 5 年之前
父節點
當前提交
388bf66247
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/FAQ.md

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