Skip to content

Commit

Permalink
Typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhoek committed May 2, 2020
1 parent 0d3f8b2 commit 44947b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nl/jeroenhoek/josm/gridify/GridifySettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void setNumRows(int numRows) {
public int getNumColumns() {
int columns = numColsSetting.get();

// Limit number of rows to permissible values.
// Limit number of columns to permissible values.
if (columns < 1 || columns > 1000) {
setNumColumns(4);
return 4;
Expand Down

0 comments on commit 44947b0

Please sign in to comment.