Skip to content

Commit 882df51

Browse files
committed
Fix javadoc
1 parent 4197ef7 commit 882df51

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

imgui-binding/src/main/java/imgui/ImDrawData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/**
88
* All draw data to render a Dear ImGui frame.
9-
* BINDING NOTICE: DO NOT TRY TO MODIFY FIELDS OF THIS CLASS MANUALLY! You should only access their values after {@link ImGui#Render()} call.
9+
* BINDING NOTICE: DO NOT TRY TO MODIFY FIELDS OF THIS CLASS MANUALLY! You should only access their values after {@link ImGui#render()} call.
1010
*/
1111
public final class ImDrawData {
1212
public static final int V_BUFFER_SIZE = (4 + 1) * 4;

imgui-binding/src/main/java/imgui/ImGuiInputTextData.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
*/
66
public final class ImGuiInputTextData {
77
/**
8-
* If not empty, then other chars which are different from provided will be filtered during the {@link ImGui#InputText}
9-
* and {@link ImGui#InputTextMultiline} methods.
8+
* If not empty, then other chars which are different from provided will be filtered during the {@link ImGui#inputText}
9+
* and {@link ImGui#inputTextMultiline} methods.
1010
*/
1111
public String allowedChars = "";
1212

1313
/**
14-
* If true, then string will be resized during the the {@link ImGui#InputText} and {@link ImGui#InputTextMultiline} methods.
14+
* If true, then string will be resized during the the {@link ImGui#inputText} and {@link ImGui#inputTextMultiline} methods.
1515
* Alternatively you can provide {@link imgui.enums.ImGuiInputTextFlags#CallbackResize} flag to the input text widgets to enable string resizing.
1616
* Resize factor of the string could be modified by changing {@link ImString#resizeFactor} field.
1717
*/

0 commit comments

Comments
 (0)