Skip to content

Commit 5ff1abb

Browse files
authored
Update README.md
1 parent 4c16688 commit 5ff1abb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ you have many possiblities :
4848

4949
With a singleton, you can easily manage the dialog without the need to define an instance. but you can display only one dialog at a time
5050
```cpp
51-
ImGuiFileDialog::Instance()->method_of_your_choice()
51+
ImGuiFileDialog::Instance()->method_of_your_choice();
5252
```
5353

5454
### Multi Instance :
5555

56-
for have the ability to displaya t same time many dialogs, you must define your own object
56+
for have the ability to display at same time, many dialogs. you must define your own instance
5757
```cpp
5858
ImGuiFileDialog instance;
59-
instance.method_of_your_choice()
59+
instance.method_of_your_choice();
6060
```
6161

6262
## Simple Dialog :

0 commit comments

Comments
 (0)