fix faulty documentation

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28344 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2009-02-04 09:52:10 +00:00
parent 45f62ed5de
commit 9622577c60
3 changed files with 3 additions and 3 deletions

View File

@ -547,7 +547,7 @@ int Buffer::readHeader(Lexer & lex)
// Uwe C. Schroeder
// changed to be public and have one parameter
// Returns false if "\end_document" is not read (Asger)
// Returns true if "\end_document" is not read (Asger)
bool Buffer::readDocument(Lexer & lex)
{
ErrorList & errorList = d->errorLists["Parse"];

View File

@ -137,7 +137,7 @@ public:
/** Reads a file without header.
\param par if != 0 insert the file.
\return \c false if file is not completely read.
\return \c true if file is not completely read.
*/
bool readDocument(Lexer &);

View File

@ -276,7 +276,7 @@ public:
///
void write(Buffer const & buf, std::ostream & os) const;
/// returns whether we've seen our usual 'end' marker
/// returns true if \end_document has not been read
/// insetPtr is the containing Inset
bool read(Buffer const & buf, Lexer & lex, ErrorList & errorList,
InsetText * insetPtr);