6767 * </code></pre>
6868 * </blockquote></li>
6969 * </ul>
70- * <h4 >Implementation specification</h4 >
70+ * <h3 >Implementation specification</h3 >
7171 * Implementations of this interface must be
7272 * <ul>
7373 * <li>thread-safe</li>
@@ -154,7 +154,7 @@ default <R> R query(MonetaryQuery<R> query){
154154 * <p>
155155 * Hereby also the method signature on the implementation type must return the concrete type, to
156156 * enable a fluent API, e.g.
157- * <p>
157+ *
158158 * <blockquote>
159159 * <pre><code>
160160 * public final class MyMoney implements MonetaryAmount{
@@ -315,8 +315,8 @@ default boolean isZero(){
315315 MonetaryAmount subtract (MonetaryAmount amount );
316316
317317 /**
318- * Returns a {@code MonetaryAmount} whose value is <tt >(this ×
319- * multiplicand)</tt >, and whose scale is <code>this.scale() +
318+ * Returns a {@code MonetaryAmount} whose value is <code >(this ×
319+ * multiplicand)</code >, and whose scale is <code>this.scale() +
320320 * multiplicand.scale()</code>.
321321 *
322322 * @param multiplicand value to be multiplied by this {@code MonetaryAmount}.
@@ -327,8 +327,8 @@ default boolean isZero(){
327327 MonetaryAmount multiply (long multiplicand );
328328
329329 /**
330- * Returns a {@code MonetaryAmount} whose value is <tt >(this ×
331- * multiplicand)</tt >, and whose scale is <code>this.scale() +
330+ * Returns a {@code MonetaryAmount} whose value is <code >(this ×
331+ * multiplicand)</code >, and whose scale is <code>this.scale() +
332332 * multiplicand.scale()</code>.
333333 * By default the input value's scale will be rounded to
334334 * accommodate the format capabilities, and no {@link java.lang.ArithmeticException}
@@ -345,8 +345,8 @@ default boolean isZero(){
345345
346346
347347 /**
348- * Returns a {@code MonetaryAmount} whose value is <tt >(this ×
349- * multiplicand)</tt >, and whose scale is <code>this.scale() +
348+ * Returns a {@code MonetaryAmount} whose value is <code >(this ×
349+ * multiplicand)</code >, and whose scale is <code>this.scale() +
350350 * multiplicand.scale()</code>.
351351 *
352352 * @param multiplicand value to be multiplied by this {@code MonetaryAmount}. If the multiplicand's scale exceeds
@@ -402,7 +402,7 @@ default boolean isZero(){
402402
403403 /**
404404 * Returns a {@code MonetaryAmount} whose value is <code>this % divisor</code>.
405- * <p>
405+ *
406406 * <p>
407407 * The remainder is given by
408408 * <code>this.subtract(this.divideToIntegralValue(divisor).multiply(divisor)</code> . Note that this
@@ -418,7 +418,7 @@ default boolean isZero(){
418418
419419 /**
420420 * Returns a {@code MonetaryAmount} whose value is <code>this % divisor</code>.
421- * <p>
421+ *
422422 * <p>
423423 * The remainder is given by
424424 * <code>this.subtract(this.divideToIntegralValue(divisor).multiply(divisor)</code> . Note that this
@@ -434,7 +434,7 @@ default boolean isZero(){
434434
435435 /**
436436 * Returns a {@code MonetaryAmount} whose value is <code>this % divisor</code>.
437- * <p>
437+ *
438438 * <p>
439439 * The remainder is given by
440440 * <code>this.subtract(this.divideToIntegralValue(divisor).multiply(divisor)</code> . Note that this
@@ -452,7 +452,7 @@ default boolean isZero(){
452452 * Returns a two-element {@code MonetaryAmount} array containing the result of
453453 * {@code divideToIntegralValue} followed by the result of {@code remainder} on the two
454454 * operands.
455- * <p>
455+ *
456456 * <p>
457457 * Note that if both the integer quotient and remainder are needed, this method is faster than
458458 * using the {@code divideToIntegralValue} and {@code remainder} methods separately because the
@@ -475,7 +475,7 @@ default boolean isZero(){
475475 * Returns a two-element {@code MonetaryAmount} array containing the result of
476476 * {@code divideToIntegralValue} followed by the result of {@code remainder} on the two
477477 * operands.
478- * <p>
478+ *
479479 * <p>
480480 * Note that if both the integer quotient and remainder are needed, this method is faster than
481481 * using the {@code divideToIntegralValue} and {@code remainder} methods separately because the
@@ -498,7 +498,7 @@ default boolean isZero(){
498498 * Returns a two-element {@code MonetaryAmount} array containing the result of
499499 * {@code divideToIntegralValue} followed by the result of {@code remainder} on the two
500500 * operands.
501- * <p>
501+ *
502502 * <p>
503503 * Note that if both the integer quotient and remainder are needed, this method is faster than
504504 * using the {@code divideToIntegralValue} and {@code remainder} methods separately because the
0 commit comments