2
0
Эх сурвалжийг харах

Missing closing parentheses for `if` statement (#113)

Added a missing parenthesis to the if statement for the *iconId* example.
Ramon 4 жил өмнө
parent
commit
a380ef80c1
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -60,7 +60,7 @@ A set of custom handcrafted icons is provided in [`riconsdata`](src/riconsdata.h
 ```
 To use any of those icons in your gui, just preprend *iconId* to any text written within `raygui` controls:
 ```c
-if (GuiButton(rec, "#05#Open Image") { /* ACTION */ }
+if (GuiButton(rec, "#05#Open Image")) { /* ACTION */ }
 ```
 or use the provided `GuiIconText()` function to prepend it automatically, using a clearer identifier.
 ```c