--- old/modules/javafx.graphics/src/main/java/javafx/scene/layout/FlowPane.java 2018-04-07 06:50:35.191019300 +0300 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/layout/FlowPane.java 2018-04-07 06:50:34.774810500 +0300 @@ -56,7 +56,7 @@ * wrapping at the flowpane's height. If the flowpane has a border and/or padding set, * the content will be flowed within those insets. *

- * FlowPane's prefWrapLength property establishes it's preferred width + * FlowPane's prefWrapLength property establishes its preferred width * (for horizontal) or preferred height (for vertical). Applications should set * prefWrapLength if the default value (400) doesn't suffice. Note that prefWrapLength * is used only for calculating the preferred size and may not reflect the actual @@ -137,13 +137,13 @@ * FlowPane 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: - *

{@code
- *     flowpane.setMaxWidth(500);
- * }
+ *

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

- * FlowPane does not clip its content by default, so it is possible that childrens' + * FlowPane does not clip its content by default, so it is possible that children's * bounds may extend outside its own bounds if a child's pref size is larger than * the space flowpane has to allocate for it.

*