summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGNumberList.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGNumberList.cpp')
-rw-r--r--WebCore/svg/SVGNumberList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/svg/SVGNumberList.cpp b/WebCore/svg/SVGNumberList.cpp
index a1dc430..7c0149c 100644
--- a/WebCore/svg/SVGNumberList.cpp
+++ b/WebCore/svg/SVGNumberList.cpp
@@ -51,7 +51,7 @@ String SVGNumberList::valueAsString() const
unsigned size = this->size();
for (unsigned i = 0; i < size; ++i) {
if (i > 0)
- builder.append(", ");
+ builder.append(' ');
builder.append(String::number(at(i)));
}