summaryrefslogtreecommitdiffstats
path: root/doc/classes/FileAccess.xml
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-05-30 11:48:18 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-05-30 11:48:18 +0200
commit60844997bb2981c44e3b4396ab2918df90f13c97 (patch)
tree8bce176b3f8ab8ae07b6c0fda62382f420869a4d /doc/classes/FileAccess.xml
parent80db5bd28eb236a3afb1d6e4adf13109b8711a97 (diff)
parent9315583af374d46e9ed28f64b5b6b33a2e5219f9 (diff)
downloadredot-engine-60844997bb2981c44e3b4396ab2918df90f13c97.tar.gz
Merge pull request #92535 from timothyqiu/parentheses-mismatch
Fix mismatched parentheses in class reference
Diffstat (limited to 'doc/classes/FileAccess.xml')
-rw-r--r--doc/classes/FileAccess.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/FileAccess.xml b/doc/classes/FileAccess.xml
index 99574da808..71a1fc8e09 100644
--- a/doc/classes/FileAccess.xml
+++ b/doc/classes/FileAccess.xml
@@ -524,14 +524,14 @@
</constant>
<constant name="WRITE" value="2" enum="ModeFlags">
Opens the file for write operations. The file is created if it does not exist, and truncated if it does.
- [b]Note:[/b] When creating a file it must be in an already existing directory. To recursively create directories for a file path, see [method DirAccess.make_dir_recursive]).
+ [b]Note:[/b] When creating a file it must be in an already existing directory. To recursively create directories for a file path, see [method DirAccess.make_dir_recursive].
</constant>
<constant name="READ_WRITE" value="3" enum="ModeFlags">
Opens the file for read and write operations. Does not truncate the file. The cursor is positioned at the beginning of the file.
</constant>
<constant name="WRITE_READ" value="7" enum="ModeFlags">
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.
- [b]Note:[/b] When creating a file it must be in an already existing directory. To recursively create directories for a file path, see [method DirAccess.make_dir_recursive]).
+ [b]Note:[/b] When creating a file it must be in an already existing directory. To recursively create directories for a file path, see [method DirAccess.make_dir_recursive].
</constant>
<constant name="COMPRESSION_FASTLZ" value="0" enum="CompressionMode">
Uses the [url=https://fastlz.org/]FastLZ[/url] compression method.