Name: rmT116609 Date: 08/21/2001
java version "1.3.1"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
Misspelling in method description of public int capacity(). Method currently reads:
Returns the current capacity of this vector.
Returns:
the current capacity (the length of its internal data arary, kept in the field elementData of this vector.
Typo's:
-------
1) arary should be array
2) there should be right parenthesis at the end of the word vector
It should read:
===========
capacity
public int capacity()
Returns the current capacity of this vector.
Returns:
the current capacity (the length of its internal data array, kept in the field elementData of this vector).
(Review ID: 130074)
======================================================================