--- old/modules/javafx.base/src/main/java/javafx/beans/InvalidationListener.java 2018-04-07 06:50:10.958880700 +0300 +++ new/modules/javafx.base/src/main/java/javafx/beans/InvalidationListener.java 2018-04-07 06:50:10.546046700 +0300 @@ -53,7 +53,7 @@ * {@code InvalidationListener}. It is called if an {@link Observable} * becomes invalid. *

- * In general is is considered bad practice to modify the observed value in + * In general, it is considered bad practice to modify the observed value in * this method. * * @param observable --- old/modules/javafx.base/src/main/java/javafx/beans/value/ChangeListener.java 2018-04-07 06:50:13.625306700 +0300 +++ new/modules/javafx.base/src/main/java/javafx/beans/value/ChangeListener.java 2018-04-07 06:50:13.240374100 +0300 @@ -50,7 +50,7 @@ * {@code ChangeListener}. It is called if the value of an * {@link ObservableValue} changes. *

- * In general is is considered bad practice to modify the observed value in + * In general, it is considered bad practice to modify the observed value in * this method. * * @param observable --- old/modules/javafx.controls/src/main/java/javafx/scene/control/Dialog.java 2018-04-07 06:50:16.329622900 +0300 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/Dialog.java 2018-04-07 06:50:15.928974600 +0300 @@ -101,11 +101,12 @@ * on if the {@link DialogPane#createButton(ButtonType)} method has been overridden. A * typical approach is therefore along the following lines: * - *

{@code ButtonType loginButtonType = new ButtonType("Login", ButtonData.OK_DONE);
- * Dialog dialog = new Dialog<>();
- * dialog.getDialogPane().getButtonTypes().add(loginButtonType);
- * boolean disabled = false; // computed based on content of text fields, for example
- * dialog.getDialogPane().lookupButton(loginButtonType).setDisable(disabled);}
+ *
{@code
+ *     ButtonType loginButtonType = new ButtonType("Login", ButtonData.OK_DONE);
+ *     Dialog dialog = new Dialog<>();
+ *     dialog.getDialogPane().getButtonTypes().add(loginButtonType);
+ *     boolean disabled = false; // computed based on content of text fields, for example
+ *     dialog.getDialogPane().lookupButton(loginButtonType).setDisable(disabled);}
* *

Once a Dialog is instantiated and fully configured, the next step is to * show it. More often than not, dialogs are shown in a modal and blocking @@ -125,20 +126,23 @@ * equally valid ways of showing a dialog: * *

Option 1: The 'traditional' approach - *

{@code Optional result = dialog.showAndWait();
+ * 
{@code
+ * Optional result = dialog.showAndWait();
  * if (result.isPresent() && result.get() == ButtonType.OK) {
  *     formatSystem();
  * }}
* *

Option 2: The traditional + Optional approach - *

{@code dialog.showAndWait().ifPresent(response -> {
+ * 
{@code
+ * dialog.showAndWait().ifPresent(response -> {
  *     if (response == ButtonType.OK) {
  *         formatSystem();
  *     }
  * });}
* *

Option 3: The fully lambda approach - *

{@code dialog.showAndWait()
+ * 
{@code
+ * dialog.showAndWait()
  *      .filter(response -> response == ButtonType.OK)
  *      .ifPresent(response -> formatSystem());}
* @@ -1008,7 +1012,7 @@ // This code is called both in the normal and in the abnormal case (i.e. // both when a button is clicked and when the user forces a window closed - // with keyboard OS-specific shortchuts or OS-native titlebar buttons). + // with keyboard OS-specific shortcuts or OS-native titlebar buttons). @SuppressWarnings("unchecked") void setResultAndClose(ButtonType cmd, boolean close) { Callback resultConverter = getResultConverter(); --- old/modules/javafx.graphics/src/main/java/javafx/scene/Node.java 2018-04-07 06:50:19.069657300 +0300 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/Node.java 2018-04-07 06:50:18.656294200 +0300 @@ -307,7 +307,7 @@ * A scaling transformation causes a node to either appear larger or * smaller depending on the scaling factor. Scaling alters the coordinate space * of the node such that each unit of distance along the axis in local - * coordinates is multipled by the scale factor. As with rotation + * coordinates is multiplied by the scale factor. As with rotation * transformations, scaling transformations are applied about a "pivot" point. * You can think of this as the point in the Node around which you "zoom". For * example, if you create a {@link javafx.scene.shape.Rectangle} with a @@ -2071,7 +2071,7 @@ private void doLayoutPass() { if (this instanceof Parent) { // TODO: As an optimization we only need to layout those dirty - // roots that are descendents of this node + // roots that are descendants of this node Parent p = (Parent)this; for (int i = 0; i < 3; i++) { p.layout(); @@ -3245,7 +3245,7 @@ * * For perspective camera, this method first exams node's bounds against * camera's clipping plane to cut off those out of viewing frustrum. After - * computing areaInScreen, it applys a tight viewing frustrum check using + * computing areaInScreen, it applies a tight viewing frustrum check using * canonical view volume. * * The result of areaInScreen comes from the product of @@ -3332,7 +3332,7 @@ tempTx.preConcatenate(camera.getSceneToLocalTransform()); tempTx.transform(localBounds, nodeInCameraBounds); - // Compare in camera coornidate + // Compare in camera coordinate if (nodeInCameraBounds.getMinZ() > camera.getFarClip() || nodeInCameraBounds.getMaxZ() < camera.getNearClip()) { return 0; @@ -3768,7 +3768,7 @@ return computeLocalBounds(bounds, tx); } else { // 3D transformations and - // selected 2D transformations (unifrom transform, flip, quadrant rotation). + // selected 2D transformations (uniform transform, flip, quadrant rotation). // These 2D transformation will yield tight bounds when applied on the pre-computed // geomBounds // Note: Transforming the local bounds into a 3D space will yield a bounds @@ -4278,9 +4278,11 @@ /** * Transforms a point from the coordinate space of the scene * into the local coordinate space of this {@code Node}. - * If the Node does not have any {@link SubScene} or {@code rootScene} is set to true, the arguments are in {@link Scene} coordinates - * of the Node returned by {@link #getScene()}. Othwerwise, the subscene coordinates are used, which is equivalent to calling - * {@link #sceneToLocal(double, double)} + * If the Node does not have any {@link SubScene} or {@code rootScene} is set to true, the + * arguments are in {@link Scene} coordinates of the Node returned by {@link #getScene()}. + * Otherwise, the subscene coordinates are used, which is equivalent to calling + * {@link #sceneToLocal(double, double)}. + * * @param x the x coordinate * @param y the y coordinate * @param rootScene whether Scene coordinates should be used even if the Node is in a SubScene @@ -4317,9 +4319,11 @@ /** * Transforms a point from the coordinate space of the scene * into the local coordinate space of this {@code Node}. - * If the Node does not have any {@link SubScene} or {@code rootScene} is set to true, the arguments are in {@link Scene} coordinates - * of the Node returned by {@link #getScene()}. Othwerwise, the subscene coordinates are used, which is equivalent to calling - * {@link #sceneToLocal(javafx.geometry.Point2D)} + * If the Node does not have any {@link SubScene} or {@code rootScene} is set to true, the + * arguments are in {@link Scene} coordinates of the Node returned by {@link #getScene()}. + * Otherwise, the subscene coordinates are used, which is equivalent to calling + * {@link #sceneToLocal(javafx.geometry.Point2D)}. + * * @param point the point * @param rootScene whether Scene coordinates should be used even if the Node is in a SubScene * @return local coordinates of the point @@ -4332,8 +4336,9 @@ /** * Transforms a bounds from the coordinate space of the scene * into the local coordinate space of this {@code Node}. - * If the Node does not have any {@link SubScene} or {@code rootScene} is set to true, the arguments are in {@link Scene} coordinates - * of the Node returned by {@link #getScene()}. Othwerwise, the subscene coordinates are used, which is equivalent to calling + * If the Node does not have any {@link SubScene} or {@code rootScene} is set to true, the + * arguments are in {@link Scene} coordinates of the Node returned by {@link #getScene()}. + * Otherwise, the subscene coordinates are used, which is equivalent to calling * {@link #sceneToLocal(javafx.geometry.Bounds)}. *

* Since 3D bounds cannot be converted with {@code rootScene} set to {@code true}, trying to convert 3D bounds will yield {@code null}. @@ -4632,9 +4637,10 @@ /** * Transforms a point from the local coordinate space of this {@code Node} * into the coordinate space of its scene. - * If the Node does not have any {@link SubScene} or {@code rootScene} is set to true, the result point is in {@link Scene} coordinates - * of the Node returned by {@link #getScene()}. Othwerwise, the subscene coordinates are used, which is equivalent to calling - * {@link #localToScene(javafx.geometry.Point3D)} + * If the Node does not have any {@link SubScene} or {@code rootScene} is set to true, the + * result point is in {@link Scene} coordinates of the Node returned by {@link #getScene()}. + * Otherwise, the subscene coordinates are used, which is equivalent to calling + * {@link #localToScene(javafx.geometry.Point3D)}. * * @param localPoint the point in local coordinates * @param rootScene whether Scene coordinates should be used even if the Node is in a SubScene @@ -4657,9 +4663,10 @@ /** * Transforms a point from the local coordinate space of this {@code Node} * into the coordinate space of its scene. - * If the Node does not have any {@link SubScene} or {@code rootScene} is set to true, the result point is in {@link Scene} coordinates - * of the Node returned by {@link #getScene()}. Othwerwise, the subscene coordinates are used, which is equivalent to calling - * {@link #localToScene(double, double, double)} + * If the Node does not have any {@link SubScene} or {@code rootScene} is set to true, the + * result point is in {@link Scene} coordinates of the Node returned by {@link #getScene()}. + * Otherwise, the subscene coordinates are used, which is equivalent to calling + * {@link #localToScene(double, double, double)}. * * @param x the x coordinate of the point in local coordinates * @param y the y coordinate of the point in local coordinates @@ -4677,9 +4684,10 @@ /** * Transforms a point from the local coordinate space of this {@code Node} * into the coordinate space of its scene. - * If the Node does not have any {@link SubScene} or {@code rootScene} is set to true, the result point is in {@link Scene} coordinates - * of the Node returned by {@link #getScene()}. Othwerwise, the subscene coordinates are used, which is equivalent to calling - * {@link #localToScene(javafx.geometry.Point2D)} + * If the Node does not have any {@link SubScene} or {@code rootScene} is set to true, the + * result point is in {@link Scene} coordinates of the Node returned by {@link #getScene()}. + * Otherwise, the subscene coordinates are used, which is equivalent to calling + * {@link #localToScene(javafx.geometry.Point2D)}. * * @param localPoint the point in local coordinates * @param rootScene whether Scene coordinates should be used even if the Node is in a SubScene @@ -4699,9 +4707,10 @@ /** * Transforms a point from the local coordinate space of this {@code Node} * into the coordinate space of its scene. - * If the Node does not have any {@link SubScene} or {@code rootScene} is set to true, the result point is in {@link Scene} coordinates - * of the Node returned by {@link #getScene()}. Othwerwise, the subscene coordinates are used, which is equivalent to calling - * {@link #localToScene(double, double)} + * If the Node does not have any {@link SubScene} or {@code rootScene} is set to true, the + * result point is in {@link Scene} coordinates of the Node returned by {@link #getScene()}. + * Otherwise, the subscene coordinates are used, which is equivalent to calling + * {@link #localToScene(double, double)}. * * @param x the x coordinate of the point in local coordinates * @param y the y coordinate of the point in local coordinates @@ -4718,9 +4727,10 @@ /** * Transforms a bounds from the local coordinate space of this {@code Node} * into the coordinate space of its scene. - * If the Node does not have any {@link SubScene} or {@code rootScene} is set to true, the result bounds are in {@link Scene} coordinates - * of the Node returned by {@link #getScene()}. Othwerwise, the subscene coordinates are used, which is equivalent to calling - * {@link #localToScene(javafx.geometry.Bounds)} + * If the Node does not have any {@link SubScene} or {@code rootScene} is set to true, the + * result bounds are in {@link Scene} coordinates of the Node returned by {@link #getScene()}. + * Otherwise, the subscene coordinates are used, which is equivalent to calling + * {@link #localToScene(javafx.geometry.Bounds)}. * * @param localBounds the bounds in local coordinates * @param rootScene whether Scene coordinates should be used even if the Node is in a SubScene @@ -7130,8 +7140,8 @@ } NodeHelper.markDirty(Node.this, DirtyBits.NODE_EFFECT); - // bounds may have changed regardeless whether - // the dirty flag on efffect is set + // bounds may have changed regardless whether + // the dirty flag on effect is set localBoundsChanged(); } @@ -8472,8 +8482,8 @@ if (isTreeVisible) { isTreeVisible = parentNode == null || parentNode.isTreeVisible(); } - // When the parent has changed to visible and we have unsynchornized visibility, - // we have to synchronize, because the rendering will now pass throught the newly-visible parent + // When the parent has changed to visible and we have unsynchronized visibility, + // we have to synchronize, because the rendering will now pass through the newly-visible parent // Otherwise an invisible Node might get rendered if (parentChanged && parentNode != null && parentNode.isTreeVisible() && isDirty(DirtyBits.NODE_VISIBLE)) { @@ -9373,7 +9383,7 @@ // If the node is part of a subscene, then we must ensure that // the we not only mark subScene.root dirty, but continue and // call subScene.notifyParentsOfInvalidatedCSS() until - // Scene.root gets marked dirty, via the recurisve call: + // Scene.root gets marked dirty, via the recursive call: subScene.cssFlag = CssFlags.UPDATE; subScene.notifyParentsOfInvalidatedCSS(); } @@ -9809,9 +9819,9 @@ /** * The role description of this {@code Node}. *

- * Noramlly, when a role is provided for a node, the screen reader + * Normally, when a role is provided for a node, the screen reader * speaks the role as well as the contents of the node. When this - * value is set, it is possbile to override the default. This is + * value is set, it is possible to override the default. This is * useful because the set of roles is predefined. For example, * it is possible to set the role of a node to be a button, but * have the role description be arbitrary text. --- old/modules/javafx.graphics/src/main/java/javafx/scene/input/MouseEvent.java 2018-04-07 06:50:27.148162100 +0300 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/input/MouseEvent.java 2018-04-07 06:50:26.747858600 +0300 @@ -811,7 +811,7 @@ private final boolean secondaryButtonDown; /** - * Returns {@code true} if secondary button (button 1, usually the right) + * Returns {@code true} if secondary button (button 3, usually the right) * is currently pressed. Note that this is different from the * {@code getButton()} method that indicates which button press was * responsible for this event while this method indicates whether the --- old/modules/javafx.graphics/src/main/java/javafx/scene/layout/AnchorPane.java 2018-04-07 06:50:29.813521700 +0300 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/layout/AnchorPane.java 2018-04-07 06:50:29.429567600 +0300 @@ -107,7 +107,7 @@ * Applications may restore the computed values by setting these properties back * to Region.USE_COMPUTED_SIZE. *

- * AnchorPane does not clip its content by default, so it is possible that childrens' + * AnchorPane does not clip its content by default, so it is possible that children's * bounds may extend outside its own bounds if the anchor pane is resized smaller * than its preferred size.

* --- old/modules/javafx.graphics/src/main/java/javafx/scene/layout/BorderPane.java 2018-04-07 06:50:32.488304500 +0300 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/layout/BorderPane.java 2018-04-07 06:50:32.085838500 +0300 @@ -118,7 +118,7 @@ * Applications may restore the computed values by setting these properties back * to Region.USE_COMPUTED_SIZE. *

- * BorderPane does not clip its content by default, so it is possible that childrens' + * BorderPane 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 min size prevents it from * being fit within it space.

* --- 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.

* --- old/modules/javafx.graphics/src/main/java/javafx/scene/layout/GridPane.java 2018-04-07 06:50:37.965207900 +0300 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/layout/GridPane.java 2018-04-07 06:50:37.579745400 +0300 @@ -70,7 +70,7 @@ /** * GridPane lays out its children within a flexible grid of rows and columns. - * If a border and/or padding is set, then its content will be layed out within + * If a border and/or padding is set, then its content will be laid out within * those insets. *

* A child may be placed anywhere within the grid and may span multiple @@ -223,7 +223,7 @@ * Applications may restore the computed values by setting these properties back * to USE_COMPUTED_SIZE. *

- * GridPane does not clip its content by default, so it is possible that childrens' + * GridPane 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 min size prevents it from * being fit within it space.

* --- old/modules/javafx.graphics/src/main/java/javafx/scene/layout/HBox.java 2018-04-07 06:50:40.885523200 +0300 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/layout/HBox.java 2018-04-07 06:50:40.431518400 +0300 @@ -52,7 +52,7 @@ /** * HBox lays out its children in a single horizontal row. - * If the hbox has a border and/or padding set, then the contents will be layed + * If the hbox has a border and/or padding set, then the contents will be laid * out within those insets. *

* HBox example: @@ -109,7 +109,7 @@ * Applications may restore the computed values by setting these properties back * to USE_COMPUTED_SIZE. *

- * HBox does not clip its content by default, so it is possible that childrens' + * HBox 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 min size prevents it from * being fit within the hbox.

* --- old/modules/javafx.graphics/src/main/java/javafx/scene/layout/Pane.java 2018-04-07 06:50:44.090382700 +0300 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/layout/Pane.java 2018-04-07 06:50:43.705394000 +0300 @@ -91,7 +91,7 @@ * Applications may restore the computed values by setting these properties back * to Region.USE_COMPUTED_SIZE. *

- * Pane does not clip its content by default, so it is possible that childrens' + * Pane does not clip its content by default, so it is possible that children's * bounds may extend outside its own bounds, either if children are positioned * at negative coordinates or the pane is resized smaller than its preferred size.

* --- old/modules/javafx.graphics/src/main/java/javafx/scene/layout/StackPane.java 2018-04-07 06:50:46.709891000 +0300 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/layout/StackPane.java 2018-04-07 06:50:46.324709800 +0300 @@ -48,7 +48,7 @@ *

* The z-order of the children is defined by the order of the children list * with the 0th child being the bottom and last child on top. If a border and/or - * padding have been set, the children will be layed out within those insets. + * padding have been set, the children will be laid out within those insets. *

* The stackpane will attempt to resize each child to fill its content area. * If the child could not be sized to fill the stackpane (either because it was @@ -56,7 +56,8 @@ * the area using the alignment property, which defaults to Pos.CENTER. *

* StackPane example: - *

{@code     StackPane stack = new StackPane();
+ * 
{@code
+ *     StackPane stack = new StackPane();
  *     stack.getChildren().addAll(new Rectangle(100,100,Color.BLUE), new Label("Go!));
  * }
*

@@ -101,7 +102,7 @@ * to USE_COMPUTED_SIZE. * *

- * StackPane does not clip its content by default, so it is possible that childrens' + * StackPane 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 min size prevents it from * being fit within the stackpane.

* --- 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 --- old/modules/javafx.graphics/src/main/java/javafx/scene/layout/VBox.java 2018-04-07 06:50:51.989341500 +0300 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/layout/VBox.java 2018-04-07 06:50:51.603806500 +0300 @@ -50,7 +50,7 @@ /** * VBox lays out its children in a single vertical column. - * If the vbox has a border and/or padding set, then the contents will be layed + * If the vbox has a border and/or padding set, then the contents will be laid * out within those insets. *

* VBox example: @@ -109,7 +109,7 @@ * Applications may restore the computed values by setting these properties back * to USE_COMPUTED_SIZE. *

- * VBox does not clip its content by default, so it is possible that childrens' + * VBox 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 min size prevents it from * being fit within the vbox.

* --- old/modules/javafx.graphics/src/main/java/javafx/scene/layout/package.html 2018-04-07 06:50:57.816456400 +0300 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/layout/package.html 2018-04-07 06:50:57.430843700 +0300 @@ -131,7 +131,7 @@ Applications cannot reliably query the bounds of a resizable node until it has been added to a scene because the size of that node may be dependent on CSS. This is because CSS is used to style many aspects of a node which affect it's preferred size -(font, padding, borders, etc) and so the node cannot be layed out (resized) until +(font, padding, borders, etc) and so the node cannot be laied out (resized) until CSS has been applied and the parent can access valid size range metrics. This is always true for Controls (and any panes that contain them), because they rely on CSS for their default style, even if no user-level style sheets have been set. @@ -188,7 +188,7 @@ {@link javafx.scene.Group Group} - Union of all visible childrens' visual bounds ({@code boundsInParent}) + Union of all visible children's visual bounds ({@code boundsInParent}) Does NOT include effect, clip, or transforms set directly on group, however DOES include effect, clip, transforms set on individual children since those are included in the child's {@code boundsInParent}. --- old/modules/javafx.graphics/src/main/java/javafx/scene/shape/Box.java 2018-04-07 06:51:05.611646600 +0300 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/shape/Box.java 2018-04-07 06:51:05.209505600 +0300 @@ -85,10 +85,6 @@ private TriangleMesh mesh; - /** - * Creates a new instance of {@code Box} of dimension 2 by 2 by 2. - */ - public static final double DEFAULT_SIZE = 2; { @@ -96,6 +92,9 @@ BoxHelper.initHelper(this); } + /** + * Creates a new instance of {@code Box} of dimension 2 by 2 by 2. + */ public Box() { this(DEFAULT_SIZE, DEFAULT_SIZE, DEFAULT_SIZE); } --- old/modules/javafx.graphics/src/main/java/javafx/stage/StageStyle.java 2018-04-07 06:51:08.234319300 +0300 +++ new/modules/javafx.graphics/src/main/java/javafx/stage/StageStyle.java 2018-04-07 06:51:07.849205800 +0300 @@ -62,8 +62,8 @@ * This is a conditional feature, to check if it is supported see * {@link javafx.application.Platform#isSupported(javafx.application.ConditionalFeature)}. * If the feature is not supported by the platform, this style downgrades to {@code StageStyle.DECORATED} - *

` - * NOTE: To see the effect the {@code Scene} covering the {@code Stage} should have {@code Color.TRANSPARENT} + *

+ * NOTE: To see the effect, the {@code Scene} covering the {@code Stage} should have {@code Color.TRANSPARENT} * @since JavaFX 8.0 */ UNIFIED