--- old/modules/javafx.graphics/src/main/java/javafx/scene/layout/GridPane.java 2019-02-13 15:42:07.058339900 +0200 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/layout/GridPane.java 2019-02-13 15:42:06.620842900 +0200 @@ -136,7 +136,7 @@ * * By default, rows and columns will be sized to fit their content; * a column will be wide enough to accommodate the widest child, a - * row tall enough to fit the tallest child.However, if an application needs + * row tall enough to fit the tallest child. However, if an application needs * to explicitly control the size of rows or columns, it may do so by adding * RowConstraints and ColumnConstraints objects to specify those metrics. * For example, to create a grid with two fixed-width columns: @@ -962,7 +962,7 @@ public final ObservableList getColumnConstraints() { return columnConstraints; } /** - * Adds a child to the gridpane at the specified column,row position. + * Adds a child to the gridpane at the specified column and row position. * This convenience method will set the gridpane column and row constraints * on the child. * @param child the node being added to the gridpane @@ -975,7 +975,7 @@ } /** - * Adds a child to the gridpane at the specified column,row position and spans. + * Adds a child to the gridpane at the specified column and row position and spans. * This convenience method will set the gridpane column, row, and span constraints * on the child. * @param child the node being added to the gridpane