--- old/modules/javafx.graphics/src/main/java/javafx/scene/layout/TilePane.java 2018-04-07 06:50:49.345706000 +0300 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/layout/TilePane.java 2018-04-07 06:50:48.960784400 +0300 @@ -143,11 +143,14 @@ *

* TilePane provides properties for setting the size range directly. These * properties default to the sentinel value Region.USE_COMPUTED_SIZE, however the - * application may set them to other values as needed, e.g. {@code tilepane.setMaxWidth(500)}. + * application may set them to other values as needed: + *


+ *     tilePane.setMaxWidth(500);
+ * 
* Applications may restore the computed values by setting these properties back * to Region.USE_COMPUTED_SIZE. *

- * TilePane does not clip its content by default, so it is possible that childrens' + * TilePane does not clip its content by default, so it is possible that children's' * bounds may extend outside the tiles (and possibly the tilepane bounds) if a * child's pref size prevents it from being fit within its tile. Also, if the tilepane * is resized smaller than its preferred size, it may not be able to fit all the