--- old/modules/graphics/src/main/java/javafx/scene/layout/TilePane.java 2016-05-26 13:02:33.453936253 +0300 +++ new/modules/graphics/src/main/java/javafx/scene/layout/TilePane.java 2016-05-26 13:02:32.849634253 +0300 @@ -85,7 +85,7 @@ * TilePane tile = new TilePane(); * tile.setHgap(8); * tile.setPrefColumns(4); - * for (int i = 0; i < 20; i++) { + * for (int i = 0; i < 20; i++) { * tile.getChildren().add(new ImageView(...)); * } * @@ -95,7 +95,7 @@ * TilePane tile = new TilePane(Orientation.VERTICAL); * tile.setTileAlignment(Pos.CENTER_LEFT); * tile.setPrefRows(10); - * for (int i = 0; i < 50; i++) { + * for (int i = 0; i < 50; i++) { * tile.getChildren().add(new ImageView(...)); * } * @@ -169,7 +169,7 @@ * Example: *

  *     TilePane tilepane = new TilePane();
- *     for (int i = 0; i < 20; i++) {
+ *     for (int i = 0; i < 20; i++) {
  *        Label title = new Label(imageTitle[i]):
  *        Imageview imageview = new ImageView(new Image(imageName[i]));
  *        TilePane.setAlignment(label, Pos.BOTTOM_RIGHT);
@@ -256,7 +256,7 @@
     /**
      * Creates a TilePane layout with the specified orientation,
      * prefColumn/prefRows = 5 and hgap/vgap = 0.
-     * @param orientation the direction the tiles should flow & wrap
+     * @param orientation the direction the tiles should flow & wrap
      */
     public TilePane(Orientation orientation) {
         super();
@@ -278,7 +278,7 @@
     /**
      * Creates a TilePane layout with the specified orientation, hgap/vgap,
      * and prefRows/prefColumns = 5.
-     * @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
      */
@@ -302,7 +302,7 @@
     /**
      * Creates a TilePane layout with the specified orientation,
      * prefColumn/prefRows = 5 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
      */
@@ -330,7 +330,7 @@
     /**
      * Creates a TilePane layout with the specified orientation, hgap/vgap,
      * and prefRows/prefColumns = 5.
-     * @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.