aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Brede Vekterli <vekterli@yahoo-inc.com>2017-02-02 15:55:18 +0100
committerTor Brede Vekterli <vekterli@yahoo-inc.com>2017-02-02 15:55:18 +0100
commit86d1ca88d7f642315d5dd4f1125c0ffbc31f8628 (patch)
tree9c0e5bef68505ff023edbdf9ca892f1087e9956e
parentb38734c2039d889d0a8fc1a810568831a4eb4af3 (diff)
Remove spurious character in comment
-rw-r--r--searchcore/src/vespa/searchcore/proton/docsummary/summaryfieldconverter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/docsummary/summaryfieldconverter.cpp b/searchcore/src/vespa/searchcore/proton/docsummary/summaryfieldconverter.cpp
index 12977ea4017..03ae8055c1c 100644
--- a/searchcore/src/vespa/searchcore/proton/docsummary/summaryfieldconverter.cpp
+++ b/searchcore/src/vespa/searchcore/proton/docsummary/summaryfieldconverter.cpp
@@ -488,7 +488,7 @@ class SummaryFieldValueConverter : protected ConstFieldValueVisitor
void visit(const ReferenceFieldValue& value) override {
if (value.hasValidDocumentId()) {
_str << value.getDocumentId().toString();
- } // else:: implicit empty string
+ } // else: implicit empty string
}
public: