--- old/modules/javafx.graphics/src/main/java/javafx/scene/image/PixelWriter.java 2016-08-08 12:11:03.000000000 -0700 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/image/PixelWriter.java 2016-08-08 12:11:03.000000000 -0700 @@ -190,8 +190,8 @@ * This method performs an operation which is semantically equivalent to * (though likely much faster than) this pseudo-code: *
-     *     for (int y = 0; y < h, y++) {
-     *         for (int x = 0; x < w; x++) {
+     *     for (int y = 0; y < h, y++) {
+     *         for (int x = 0; x < w; x++) {
      *             setArgb(dstx + x, dsty + y,
      *                     reader.getArgb(srcx + x, srcy + y));
      *         }