summaryrefslogtreecommitdiff
path: root/test/files/run/Course-2002-03.scala
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2007-06-11 09:05:15 +0000
committermihaylov <mihaylov@epfl.ch>2007-06-11 09:05:15 +0000
commit908decebd0f890068221ff586ebd7b3492f37c0f (patch)
tree7a06ff1249f693e16c93c22868b936ac165a510f /test/files/run/Course-2002-03.scala
parent80d1c7de2a1562592bbbe15ba12c6985bab39274 (diff)
downloadscala-908decebd0f890068221ff586ebd7b3492f37c0f.tar.gz
scala-908decebd0f890068221ff586ebd7b3492f37c0f.tar.bz2
scala-908decebd0f890068221ff586ebd7b3492f37c0f.zip
Improved interface of scala.compat.StringBuilder
Diffstat (limited to 'test/files/run/Course-2002-03.scala')
-rw-r--r--test/files/run/Course-2002-03.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/Course-2002-03.scala b/test/files/run/Course-2002-03.scala
index 5a470a3561..efb3c81446 100644
--- a/test/files/run/Course-2002-03.scala
+++ b/test/files/run/Course-2002-03.scala
@@ -238,7 +238,7 @@ object M8 {
val buffer: StringBuilder = new StringBuilder();
buffer.append('[');
foreach(i => {
- if (buffer.length() > 1) {buffer.append(','); ()}; // !!! ; ()
+ if (buffer.length > 1) {buffer.append(','); ()}; // !!! ; ()
buffer.append(i);
()});
buffer.append(']');