summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2005-05-18 11:57:12 +0000
committermichelou <michelou@epfl.ch>2005-05-18 11:57:12 +0000
commit3f5f7682e4db4ba8f7d5020d79737dc257ab03a7 (patch)
tree296e538c982cbccc267cd2380d9a97ce4c5c4d57
parent12e8a96c2be3f69ecf8223bc112d5d99983a7ce9 (diff)
downloadscala-3f5f7682e4db4ba8f7d5020d79737dc257ab03a7.tar.gz
scala-3f5f7682e4db4ba8f7d5020d79737dc257ab03a7.tar.bz2
scala-3f5f7682e4db4ba8f7d5020d79737dc257ab03a7.zip
- corrected typo in comment.
-rw-r--r--sources/scala/runtime/types/TypeAny.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scala/runtime/types/TypeAny.java b/sources/scala/runtime/types/TypeAny.java
index 2f1e2d08bd..6a2a5483a4 100644
--- a/sources/scala/runtime/types/TypeAny.java
+++ b/sources/scala/runtime/types/TypeAny.java
@@ -28,7 +28,7 @@ public class TypeAny extends SpecialType {
public int hashCode() { return 0xBBBBBBBB; }
- // Make TypeAll a serializable singleton
+ // Make TypeAny a serializable singleton
public static TypeAny INSTANCE = new TypeAny();
protected TypeAny() { /* exists only to that instantiation */ }
private Object readResolve() { return INSTANCE; }