summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Brawer <brawer@dandelis.ch>2002-04-30 14:01:32 +0000
committerSascha Brawer <brawer@dandelis.ch>2002-04-30 14:01:32 +0000
commita9f6d525d6fb1ba20be888b5763c8842d0a1dd3a (patch)
treed18184a088df447192823b6fb1b34f1a6afbe6f0
parent1e6de7c42d576deb97ad1a2bdf8890d579d267cc (diff)
downloadclasspath-a9f6d525d6fb1ba20be888b5763c8842d0a1dd3a.tar.gz
ensureCapacity: Docfix to avoid angle brackets in Javadoc.
-rw-r--r--java/util/ArrayList.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/util/ArrayList.java b/java/util/ArrayList.java
index 99745d0f6..2d2146ddf 100644
--- a/java/util/ArrayList.java
+++ b/java/util/ArrayList.java
@@ -160,7 +160,7 @@ public class ArrayList extends AbstractList
/**
* Guarantees that this list will have at least enough capacity to
* hold minCapacity elements. This implementation will grow the list to
- * max(current * 2, minCapacity) if (minCapacity > current). The JCL says
+ * max(current * 2, minCapacity) if (minCapacity &gt; current). The JCL says
* explictly that "this method increases its capacity to minCap", while
* the JDK 1.3 online docs specify that the list will grow to at least the
* size specified.