aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/handler/package-info.java
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2021-11-10 10:23:25 +0100
committergjoranv <gv@verizonmedia.com>2021-11-10 16:13:53 +0100
commita8d87d56ffdde37354b37daf8460cc84fc59daba (patch)
tree852133a3478c15293b57fa5af2846f458b8a1be1 /jdisc_core/src/main/java/com/yahoo/jdisc/handler/package-info.java
parent484143f7d3b1d53c2f34b7a3783d5a3538b9106b (diff)
JDK 17: Fix out-of-sequence javadoc headers.
Diffstat (limited to 'jdisc_core/src/main/java/com/yahoo/jdisc/handler/package-info.java')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/handler/package-info.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/handler/package-info.java b/jdisc_core/src/main/java/com/yahoo/jdisc/handler/package-info.java
index 1b08ef5e60c..088c9d5592d 100644
--- a/jdisc_core/src/main/java/com/yahoo/jdisc/handler/package-info.java
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/handler/package-info.java
@@ -3,7 +3,7 @@
* <p>Provides classes and interfaces for implementing a {@link com.yahoo.jdisc.handler.RequestHandler
* RequestHandler}.</p>
*
- * <h3>RequestHandler</h3>
+ * <h2>RequestHandler</h2>
* <p>All {@link com.yahoo.jdisc.Request Requests} in a jDISC application are processed by RequestHandlers. These are
* components created by the {@link com.yahoo.jdisc.application.Application Application}, and bound to one or more URI
* patterns through the {@link com.yahoo.jdisc.application.ContainerBuilder ContainerBuilder} API. Upon receiving a
@@ -39,7 +39,7 @@ MyApplication(ContainerActivator activator, CurrentContainer container) {
* otherwise, a jDISC application that is intended to forward large streams of data can do so without having to make any
* copies of that data as it is passing through.</p>
*
- * <h3>ResponseHandler</h3>
+ * <h2>ResponseHandler</h2>
* <p>The complement of the Request is the Response. A Response is a numeric status code and a set of header fields.
* Just as Requests are processed by RequestHandlers, Responses are processed by ResponseHandlers. The ResponseHandler
* interface is fully asynchronous, and uses the ContentChannel class to encapsulate the asynchronous passing of