From ff0650ffa45f891aee980da78a37d63bb4cf6d23 Mon Sep 17 00:00:00 2001 From: Koji Sekiguchi Date: Sun, 4 Mar 2012 12:35:26 +0000 Subject: [PATCH] fix delimiter string git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1296786 13f79535-47bb-0310-9956-ffa450edef68 --- .../update/processor/ConcatFieldUpdateProcessorFactory.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. *