reword comment

This commit is contained in:
David Rose 2002-10-03 17:49:39 +00:00
parent 002d693a1e
commit 1592268092

View File

@ -69,10 +69,15 @@ get_status_string() const {
// Function: HTTPDocument::get_file_size // Function: HTTPDocument::get_file_size
// Access: Published // Access: Published
// Description: Returns the size of the file, if it is known. // Description: Returns the size of the file, if it is known.
// Returns 0 if the file size is not known. This may // Returns 0 if the file size is not known.
// increase as the file is read due to the nature of //
// HTTP/1.1 requests which can change their minds // If the file is dynamically generated, the size may
// midstream about how much data they're sending you. // not be available until a read has started
// (e.g. open_read_file() has been called); and even
// then it may increase as more of the file is read due
// to the nature of HTTP/1.1 requests which can change
// their minds midstream about how much data they're
// sending you.
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
INLINE size_t HTTPDocument:: INLINE size_t HTTPDocument::
get_file_size() const { get_file_size() const {