--- old/modules/javafx.graphics/src/main/java/javafx/scene/layout/FlowPane.java 2016-08-08 12:11:11.000000000 -0700 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/layout/FlowPane.java 2016-08-08 12:11:11.000000000 -0700 @@ -73,7 +73,7 @@ * flow.setVgap(8); * flow.setHgap(4); * flow.setPrefWrapLength(300); // preferred width = 300 - * for (int i = 0; i < images.length; i++) { + * for (int i = 0; i < images.length; i++) { * flow.getChildren().add(new ImageView(image[i]); * } * @@ -83,7 +83,7 @@ *
     FlowPane flow = new FlowPane(Orientation.VERTICAL);
  *     flow.setColumnHalignment(HPos.LEFT); // align labels on left
  *     flow.setPrefWrapLength(200); // preferred height = 200
- *     for (int i = 0; i < titles.size(); i++) {
+ *     for (int i = 0; i < titles.size(); i++) {
  *         flow.getChildren().add(new Label(titles[i]);
  *     }
  * 
@@ -196,7 +196,7 @@ /** * Creates a FlowPane layout with the specified orientation and hgap/vgap = 0. - * @param orientation the direction the tiles should flow & wrap + * @param orientation the direction the tiles should flow & wrap */ public FlowPane(Orientation orientation) { this(); @@ -216,7 +216,7 @@ /** * Creates a FlowPane layout with the specified orientation and hgap/vgap. - * @param orientation the direction the tiles should flow & wrap + * @param orientation the direction the tiles should flow & wrap * @param hgap the amount of horizontal space between each tile * @param vgap the amount of vertical space between each tile */ @@ -239,7 +239,7 @@ /** * Creates a FlowPane layout with the specified orientation and hgap/vgap = 0. - * @param orientation the direction the tiles should flow & wrap + * @param orientation the direction the tiles should flow & wrap * @param children The initial set of children for this pane. * @since JavaFX 8.0 */ @@ -265,7 +265,7 @@ /** * Creates a FlowPane layout with the specified orientation and hgap/vgap. - * @param orientation the direction the tiles should flow & wrap + * @param orientation the direction the tiles should flow & wrap * @param hgap the amount of horizontal space between each tile * @param vgap the amount of vertical space between each tile * @param children The initial set of children for this pane.