--- old/src/java.base/share/classes/java/util/concurrent/Phaser.java 2021-01-05 09:10:59.393247340 -0800 +++ new/src/java.base/share/classes/java/util/concurrent/Phaser.java 2021-01-05 09:10:58.881251349 -0800 @@ -245,7 +245,7 @@ * be appropriate for extremely small per-phase task bodies (thus * high rates), or up to hundreds for extremely large ones. * - *

Implementation notes: This implementation restricts the + *

Implementation notes: This implementation restricts the * maximum number of parties to 65535. Attempts to register additional * parties result in {@code IllegalStateException}. However, you can and * should create tiered phasers to accommodate arbitrarily large sets @@ -919,7 +919,7 @@ *

 {@code
      * Phaser phaser = new Phaser() {
      *   protected boolean onAdvance(int phase, int parties) { return false; }
-     * }}
+ * };} * * @param phase the current phase number on entry to this method, * before this phaser is advanced