summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2003-07-16 07:51:29 +0000
committermichelou <michelou@epfl.ch>2003-07-16 07:51:29 +0000
commitdb2914e723a5aae3b32520cdbad333b6db00a6a1 (patch)
tree7f865efa15643328a8557348639c403d18cc33b0
parent1277a5e94ee3e292d2088609f5440f7e1808ac03 (diff)
downloadscala-db2914e723a5aae3b32520cdbad333b6db00a6a1.tar.gz
scala-db2914e723a5aae3b32520cdbad333b6db00a6a1.tar.bz2
scala-db2914e723a5aae3b32520cdbad333b6db00a6a1.zip
removed tabs
-rw-r--r--sources/scala/Iterable.scala5
1 files changed, 3 insertions, 2 deletions
diff --git a/sources/scala/Iterable.scala b/sources/scala/Iterable.scala
index 47d7715987..8543624466 100644
--- a/sources/scala/Iterable.scala
+++ b/sources/scala/Iterable.scala
@@ -4,11 +4,12 @@
** __\ \/ /__/ __ |/ /__/ __ | **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
-** $Id$
\* */
+// $Id$
+
package scala;
trait Iterable[+A] {
- def elements: Iterator[A];
+ def elements: Iterator[A];
}