diff --git a/solr/core/src/java/org/apache/solr/update/processor/ConcatFieldUpdateProcessorFactory.java b/solr/core/src/java/org/apache/solr/update/processor/ConcatFieldUpdateProcessorFactory.java
index 26aca06416b..19dbdfd1b4f 100644
--- a/solr/core/src/java/org/apache/solr/update/processor/ConcatFieldUpdateProcessorFactory.java
+++ b/solr/core/src/java/org/apache/solr/update/processor/ConcatFieldUpdateProcessorFactory.java
@@ -34,7 +34,7 @@ import org.apache.commons.lang.StringUtils;
/**
* Concatenates multiple values for fields matching the specified
* conditions using a configurable delimiter
which defaults
- * to " ,
".
+ * to ",
".
*
* By default, this processor concatenates the values for any field name
* which according to the schema is multiValued="false"
@@ -45,7 +45,7 @@ import org.apache.commons.lang.StringUtils;
* For example, in the configuration below, any "single valued" string and
* text field which is found to contain multiple values except for
* the primary_author
field will be concatenated using the
- * string " ;
" as a delimeter. For the
+ * string ";
" as a delimeter. For the
* primary_author
field, the multiple values will be left
* alone for FirstFieldValueUpdateProcessorFactory
to deal with.
*