* fixed typos from webbugs

This commit is contained in:
peter 2002-01-19 12:00:35 +00:00
parent f5c971b656
commit 8b648d368c
2 changed files with 287 additions and 290 deletions

View File

@ -5018,14 +5018,11 @@ Procedure Append (Var F : Text);
\Description
\var{Append} opens an existing file in append mode. Any data written to
\var{F} will be appended to the file. If the file didn't exist, it will be
created, contrary to the Turbo Pascal implementation of \var{Append}, where
a file needed to exist in order to be opened by
\var{Append}.
Only text files can be opened in append mode.
\var{F} will be appended to the file. Only text files can be opened in
append mode.
\Errors
If the file can't be created, a run-time error will be generated.
If the file doesn't exists, a run-time error will be generated.
\SeeAlso
\seep{Rewrite},\seep{Close}, \seep{Reset}
\end{procedure}

View File

@ -1811,7 +1811,7 @@ None.
\Declaration
Function AnsiExtractQuotedStr(var Src: PChar; Quote: Char): string;
\Description
\var{AnsiExtractQuotedStr} Returns \var{Src} as a string,, with \var{Quute}
\var{AnsiExtractQuotedStr} Returns \var{Src} as a string, with \var{Quote}
characters removed from the beginning and end of the string, and double
\var{Quote} characters replaced by a single \var{Quote} characters.
As such, it revereses the action of \seef{AnsiQuotedStr}.