summaryrefslogtreecommitdiff
path: root/doc/classes/FileAccess.xml
diff options
context:
space:
mode:
authorHaoyu Qiu <timothyqiu32@gmail.com>2023-02-20 11:18:57 +0800
committerHaoyu Qiu <timothyqiu32@gmail.com>2023-02-20 14:47:37 +0800
commit0c92c92891109777cd9622e112451a38f87a24d5 (patch)
tree739a8327c0161b38ebfe0568ff0bc51b3324ab5f /doc/classes/FileAccess.xml
parent9f68d06ec2d8dbeb237c5aa5c6f9bbcbe26bde5d (diff)
Various classref typo fixes
Diffstat (limited to 'doc/classes/FileAccess.xml')
-rw-r--r--doc/classes/FileAccess.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/FileAccess.xml b/doc/classes/FileAccess.xml
index 526f7c22e6..c85bde681f 100644
--- a/doc/classes/FileAccess.xml
+++ b/doc/classes/FileAccess.xml
@@ -55,7 +55,7 @@
<method name="close">
<return type="void" />
<description>
- Closes the currently opened file and prevents subsequent read/write operations. Use flush to persist the data to disk without closing the file.
+ Closes the currently opened file and prevents subsequent read/write operations. Use [method flush] to persist the data to disk without closing the file.
[b]Note:[/b] [FileAccess] will automatically close when it's freed, which happens when it goes out of scope or when it gets assigned with [code]null[/code]. In C# the reference must be disposed after we are done using it, this can be done with the [code]using[/code] statement or calling the [code]Dispose[/code] method directly.
</description>
</method>