diff --git a/doc/classes/File.xml b/doc/classes/File.xml index 5a280ad96b1..ea1973bcc01 100644 --- a/doc/classes/File.xml +++ b/doc/classes/File.xml @@ -451,16 +451,16 @@ - Opens the file for read operations. + Opens the file for read operations. The cursor is positioned at the beginning of the file. - Opens the file for write operations. Create it if the file does not exist and truncate if it exists. + Opens the file for write operations. The file is created if it does not exist, and truncated if it does. - Opens the file for read and write operations. Does not truncate the file. + Opens the file for read and write operations. Does not truncate the file. The cursor is positioned at the beginning of the file. - Opens the file for read and write operations. Create it if the file does not exist and truncate if it exists. + Opens the file for read and write operations. The file is created if it does not exist, and truncated if it does. The cursor is positioned at the beginning of the file. Uses the [url=http://fastlz.org/]FastLZ[/url] compression method.