Fix comment, per bug 520661 comment 4.

This commit is contained in:
L. David Baron 2009-10-30 14:31:41 -07:00
Родитель e21ff412f5
Коммит 4677b73925
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -169,10 +169,7 @@ nsDeque& nsDeque::Erase() {
* If the deque actually overflows, there's very little we can do.
* Perhaps this function should return PRBool/nsresult indicating success/failure.
*
* @return capacity of the deque
* If the deque did not grow,
* and you knew its capacity beforehand,
* then this would be a way to indicate the failure.
* @return whether growing succeeded
*/
PRBool nsDeque::GrowCapacity() {
PRInt32 theNewSize=mCapacity<<2;