From aa7797212158c30e86b17cd4e9c61d202c96ce7e Mon Sep 17 00:00:00 2001 From: Mark Thomas Date: Mon, 8 Nov 2021 13:51:42 +0000 Subject: [PATCH] Fix Javadoc typo (missing space) --- api/src/main/java/jakarta/servlet/jsp/SkipPageException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/main/java/jakarta/servlet/jsp/SkipPageException.java b/api/src/main/java/jakarta/servlet/jsp/SkipPageException.java index ed594c74..0f7f33cd 100644 --- a/api/src/main/java/jakarta/servlet/jsp/SkipPageException.java +++ b/api/src/main/java/jakarta/servlet/jsp/SkipPageException.java @@ -20,7 +20,7 @@ /** * Exception to indicate the calling page must cease evaluation. Thrown by a simple tag handler to indicate that the - * remainder of the page must not be evaluated. The result is propagated back to the pagein the case where one tag + * remainder of the page must not be evaluated. The result is propagated back to the page in the case where one tag * invokes another (as can be the case with tag files). The effect is similar to that of a Classic Tag Handler returning * Tag.SKIP_PAGE from doEndTag(). Jsp Fragments may also throw this exception. This exception should not be thrown * manually in a JSP page or tag file - the behavior is undefined. The exception is intended to be thrown inside