From 37d61375e2baa92b4b7b66a3af3a9501bd881f02 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Fri, 19 Jun 2015 14:39:50 +0100 Subject: [PATCH] Fix typo --- .../test/web/servlet/result/XpathResultMatchers.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-test/src/main/java/org/springframework/test/web/servlet/result/XpathResultMatchers.java b/spring-test/src/main/java/org/springframework/test/web/servlet/result/XpathResultMatchers.java index eb1ebeb5307..da4be59ac15 100644 --- a/spring-test/src/main/java/org/springframework/test/web/servlet/result/XpathResultMatchers.java +++ b/spring-test/src/main/java/org/springframework/test/web/servlet/result/XpathResultMatchers.java @@ -70,7 +70,7 @@ public class XpathResultMatchers { } /** - * Get the response encoding if explicitely defined in the response, null otherwise + * Get the response encoding if explicitly defined in the response, {code null} otherwise. */ private String getDefinedEncoding(MockHttpServletResponse response) { return response.isCharset() ? response.getCharacterEncoding() : null;