From 81eb911c09378058d185c2def8273cbbdc2665b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A1=82=E5=9D=A4?= Date: Thu, 11 Jul 2019 15:27:45 +0800 Subject: [PATCH] Fix typo in UrlPathHelper See gh-23274 --- .../main/java/org/springframework/web/util/UrlPathHelper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-web/src/main/java/org/springframework/web/util/UrlPathHelper.java b/spring-web/src/main/java/org/springframework/web/util/UrlPathHelper.java index dcf373e668..b0fdf8662b 100644 --- a/spring-web/src/main/java/org/springframework/web/util/UrlPathHelper.java +++ b/spring-web/src/main/java/org/springframework/web/util/UrlPathHelper.java @@ -256,7 +256,7 @@ public class UrlPathHelper { * Match the given "mapping" to the start of the "requestUri" and if there * is a match return the extra part. This method is needed because the * context path and the servlet path returned by the HttpServletRequest are - * stripped of semicolon content unlike the requesUri. + * stripped of semicolon content unlike the requestUri. */ @Nullable private String getRemainingPath(String requestUri, String mapping, boolean ignoreCase) {