--- old/modules/javafx.graphics/src/main/java/javafx/scene/image/PixelFormat.java 2018-07-31 08:50:24.195854200 +0300 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/image/PixelFormat.java 2018-07-31 08:50:23.918793500 +0300 @@ -209,7 +209,7 @@ *

* Pixels in this format can be decoded using the following sample code: *

{@code
-     *     int pixel = array[rowstart + x] & 0xff;
+     *     int pixel = array[rowstart + x] & 0xff;
      *     int argb  = colors[pixel];
      *
      *     int alpha = ((argb >> 24) & 0xff);
@@ -237,7 +237,7 @@
      * 

* Pixels in this format can be decoded using the following sample code: *

{@code
-     *     int pixel = array[rowstart + x] & 0xff;
+     *     int pixel = array[rowstart + x] & 0xff;
      *     int argb  = colors[pixel];
      *
      *     int alpha = ((argb >> 24) & 0xff);