summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/collection/mutable/StringBuilder.scala5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/library/scala/collection/mutable/StringBuilder.scala b/src/library/scala/collection/mutable/StringBuilder.scala
index 0d1c51c42f..925a9fd9da 100644
--- a/src/library/scala/collection/mutable/StringBuilder.scala
+++ b/src/library/scala/collection/mutable/StringBuilder.scala
@@ -445,10 +445,9 @@ final class StringBuilder(private val underlying: JavaStringBuilder)
*/
override def mkString = toString
- /** Returns the result of this Builder, which in the case
- * of StringBuilders is a StringBuilder (not a String.)
+ /** Returns the result of this Builder (a String)
*
- * @return this StringBuilder
+ * @return the string assembled by this StringBuilder
*/
def result(): String = toString
}