< prev index next >

src/java.base/share/classes/java/math/BigDecimal.java

Print this page

        

@@ -5411,11 +5411,11 @@
      * Calculate the quotient and remainder of dividing a negative long by
      * another long.
      *
      * @param n the numerator; must be negative
      * @param d the denominator; must not be unity
-     * @return a two-element {@long} array with the remainder and quotient in
+     * @return a two-element {@code long} array with the remainder and quotient in
      *         the initial and final elements, respectively
      */
     private static long[] divRemNegativeLong(long n, long d) {
         assert n < 0 : "Non-negative numerator " + n;
         assert d != 1 : "Unity denominator";
< prev index next >