* the following table shows some request URIs and which, if any context they would
* match with.
- *
description
- * | Request URI | Matches context |
- * | "http://foo.com/apps/foo/bar" | ctx3 |
- * | "http://foo.com/apps/Foo/bar" | no match, wrong case |
- * | "http://foo.com/apps/app1" | ctx2 |
- * | "http://foo.com/foo" | ctx1 |
+ * description
+ *
+ * | Request URI | Matches context |
+ *
+ *
+ * | "http://foo.com/apps/foo/bar" | ctx3 |
+ * | "http://foo.com/apps/Foo/bar" | no match, wrong case |
+ * | "http://foo.com/apps/app1" | ctx2 |
+ * | "http://foo.com/foo" | ctx1 |
+ *
*
*
* Note about socket backlogs
diff --git a/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpResponse.java b/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpResponse.java
index 89653a59839..f8aa46cef0d 100644
--- a/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpResponse.java
+++ b/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/HttpResponse.java
@@ -618,7 +618,7 @@ public abstract class HttpResponse {
* on one of the given {@code CompletableFuture
+ *
* @implNote Implementations might follow the pattern shown below
*
* {@code
@@ -633,7 +633,6 @@ public abstract class HttpResponse {
* }
* }
*
- *
*
* @param onComplete a CompletableFuture which completes after all
* responses have been received relating to this multi request.
diff --git a/jdk/src/jdk.net/share/classes/jdk/net/NetworkPermission.java b/jdk/src/jdk.net/share/classes/jdk/net/NetworkPermission.java
index a3acc63da56..48e22d5b2b9 100644
--- a/jdk/src/jdk.net/share/classes/jdk/net/NetworkPermission.java
+++ b/jdk/src/jdk.net/share/classes/jdk/net/NetworkPermission.java
@@ -36,25 +36,30 @@ import java.security.BasicPermission;
*
*
permission target name,
* what the target allows,and associated risks
+ *
*
- * | Permission Target Name |
- * What the Permission Allows |
- * Risks of Allowing this Permission |
+ * Permission Target Name |
+ * What the Permission Allows |
+ * Risks of Allowing this Permission |
*
+ *
+ *
*
- * | setOption.SO_FLOW_SLA |
+ * setOption.SO_FLOW_SLA |
* set the {@link ExtendedSocketOptions#SO_FLOW_SLA SO_FLOW_SLA} option
* on any socket that supports it |
* allows caller to set a higher priority or bandwidth allocation
* to sockets it creates, than they might otherwise be allowed. |
*
*
- * | getOption.SO_FLOW_SLA |
+ * getOption.SO_FLOW_SLA |
* retrieve the {@link ExtendedSocketOptions#SO_FLOW_SLA SO_FLOW_SLA}
* setting from any socket that supports the option |
* allows caller access to SLA information that it might not
* otherwise have |
- *
+ *
+ *
+ *
*
* @see jdk.net.ExtendedSocketOptions
*