summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/library/scala/Iterator.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/Iterator.scala b/src/library/scala/Iterator.scala
index 84c17b9953..72b687c12a 100644
--- a/src/library/scala/Iterator.scala
+++ b/src/library/scala/Iterator.scala
@@ -671,7 +671,7 @@ trait Iterator[+A] {
* @return a string representation of this iterable object.
*/
def mkString: String =
- mkString(", ")
+ mkString("")
/** Write all elements of this string into given string builder.
*