From 118c7f969b726ddd6b89163a7a6436a06dc519fc Mon Sep 17 00:00:00 2001 From: Sviatoslav Hryb Date: Thu, 29 Apr 2021 18:42:41 +0300 Subject: [PATCH] Improve readability of MessageSourceSupport Javadoc Closes gh-26874 --- .../springframework/context/support/MessageSourceSupport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-context/src/main/java/org/springframework/context/support/MessageSourceSupport.java b/spring-context/src/main/java/org/springframework/context/support/MessageSourceSupport.java index c8e24fa7c3..3cd2a8e4da 100644 --- a/spring-context/src/main/java/org/springframework/context/support/MessageSourceSupport.java +++ b/spring-context/src/main/java/org/springframework/context/support/MessageSourceSupport.java @@ -64,7 +64,7 @@ public abstract class MessageSourceSupport { * Set this to "true" to enforce MessageFormat for all messages, * expecting all message texts to be written with MessageFormat escaping. *

For example, MessageFormat expects a single quote to be escaped - * as "''". If your message texts are all written with such escaping, + * as "''". If your message texts are all written with such escaping, * even when not defining argument placeholders, you need to set this * flag to "true". Else, only message texts with actual arguments * are supposed to be written with MessageFormat escaping.