@@ -432,7 +432,7 @@ public MediaType(MediaType other, Charset charset) {
432
432
433
433
/**
434
434
* Copy-constructor that copies the type and subtype of the given {@code MediaType},
435
- * and allows for different parameter .
435
+ * and allows for different parameters .
436
436
* @param other the other media type
437
437
* @param parameters the parameters, may be {@code null}
438
438
* @throws IllegalArgumentException if any of the parameters contain illegal characters
@@ -479,7 +479,7 @@ public double getQualityValue() {
479
479
* <p>For instance, {@code text/*} includes {@code text/plain} and {@code text/html},
480
480
* and {@code application/*+xml} includes {@code application/soap+xml}, etc.
481
481
* This method is <b>not</b> symmetric.
482
- * <p>Simply calls {@link #includes(MimeType)} but declared with a
482
+ * <p>Simply calls {@link MimeType #includes(MimeType)} but declared with a
483
483
* {@code MediaType} parameter for binary backwards compatibility.
484
484
* @param other the reference media type with which to compare
485
485
* @return {@code true} if this media type includes the given media type;
@@ -494,7 +494,7 @@ public boolean includes(@Nullable MediaType other) {
494
494
* <p>For instance, {@code text/*} is compatible with {@code text/plain},
495
495
* {@code text/html}, and vice versa. In effect, this method is similar to
496
496
* {@link #includes}, except that it <b>is</b> symmetric.
497
- * <p>Simply calls {@link #isCompatibleWith(MimeType)} but declared with a
497
+ * <p>Simply calls {@link MimeType #isCompatibleWith(MimeType)} but declared with a
498
498
* {@code MediaType} parameter for binary backwards compatibility.
499
499
* @param other the reference media type with which to compare
500
500
* @return {@code true} if this media type is compatible with the given media type;
0 commit comments