From 8c36bee945b8b2f713be32ef5d5856c03d26d755 Mon Sep 17 00:00:00 2001 From: Ed Burns Date: Wed, 19 Jul 2017 10:59:19 -0400 Subject: [PATCH] Fix typo. Insert preposition "to" after "corresponding" as necessary. modified: src/main/java/javax/servlet/http/HttpServletRequest.java --- src/main/java/javax/servlet/http/HttpServletRequest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/javax/servlet/http/HttpServletRequest.java b/src/main/java/javax/servlet/http/HttpServletRequest.java index 6647631d..d2f21dab 100644 --- a/src/main/java/javax/servlet/http/HttpServletRequest.java +++ b/src/main/java/javax/servlet/http/HttpServletRequest.java @@ -265,11 +265,11 @@ public interface HttpServletRequest extends ServletRequest { * {@code Servlet} invocation was obtained by a call to {@link * ServletRequest#getRequestDispatcher} followed by a call to {@link * RequestDispatcher#include}, the returned {@code HttpServletMapping} - * is the one corresponding path that caused the first {@code + * is the one corresponding to the path that caused the first {@code * Servlet} in the invocation sequence to be invoked. If the * currently active {@code Servlet} invocation was obtained by a * call to {@link javax.servlet.AsyncContext#dispatch}, the returned - * {@code HttpServletMapping} is the one corresponding path that caused + * {@code HttpServletMapping} is the one corresponding to the path that caused * the first {@code Servlet} in the invocation sequence to be * invoked. See {@link * javax.servlet.RequestDispatcher#FORWARD_MAPPING}, {@link