Skip to content

Commit

Permalink
[scene2d.ui] Javadoc typo in Table.
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanSweet committed Mar 15, 2024
1 parent d862041 commit 5ddcc7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gdx/src/com/badlogic/gdx/scenes/scene2d/ui/Table.java
Original file line number Diff line number Diff line change
Expand Up @@ -760,13 +760,13 @@ public float getColumnWidth (int columnIndex) {
return columnWidth[columnIndex];
}

/** Returns the min height of the specified column. */
/** Returns the min width of the specified column. */
public float getColumnMinWidth (int columnIndex) {
if (sizeInvalid) computeSize();
return columnMinWidth[columnIndex];
}

/** Returns the pref height of the specified column. */
/** Returns the pref width of the specified column. */
public float getColumnPrefWidth (int columnIndex) {
if (sizeInvalid) computeSize();
return columnPrefWidth[columnIndex];
Expand Down

0 comments on commit 5ddcc7a

Please sign in to comment.