295126 document readLine's return value better

r=bzbarsky sr=darin a=asa
This commit is contained in:
cbiesinger%web.de 2005-05-24 10:59:12 +00:00
Родитель 55faf4eea4
Коммит a0fb97d850
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -48,7 +48,11 @@ interface nsILineInputStream : nsISupports
* possibly zero length sequence of 8bit chars terminated by a
* CR, LF, CRLF, LFCR, or eof.
* The line terminator is not returned.
* Return false for end of file, true otherwise
* @retval false
* End of file. This line is the last line of the file
* (aLine is valid).
* @retval true
* The file contains further lines.
*/
boolean readLine(out ACString aLine);
};