Skip to content

Commit 86f7821

Browse files
committed
Merge pull request #103391 from timothyqiu/doc-fixes
Fix various typos in the class reference
2 parents 15ff450 + a79076c commit 86f7821

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/classes/EditorExportPlatform.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
Exports project files for the specified preset. This method can be used to implement custom export format, other than PCK and ZIP. One of the callbacks is called for each exported file.
7575
[param save_cb] is called for all exported files and have the following arguments: [code]file_path: String[/code], [code]file_data: PackedByteArray[/code], [code]file_index: int[/code], [code]file_count: int[/code], [code]encryption_include_filters: PackedStringArray[/code], [code]encryption_exclude_filters: PackedStringArray[/code], [code]encryption_key: PackedByteArray[/code].
7676
[param shared_cb] is called for exported native shared/static libraries and have the following arguments: [code]file_path: String[/code], [code]tags: PackedStringArray[/code], [code]target_folder: String[/code].
77-
[b]Note:[/b] [code]file_index[/code] and [code]file_count[/code] are intended for progress tracking only and aren't necesserely unique and precise.
77+
[b]Note:[/b] [code]file_index[/code] and [code]file_count[/code] are intended for progress tracking only and aren't necessarily unique and precise.
7878
</description>
7979
</method>
8080
<method name="export_zip">
@@ -259,7 +259,7 @@
259259
Message type for error messages that must be addressed and fail the export.
260260
</constant>
261261
<constant name="DEBUG_FLAG_DUMB_CLIENT" value="1" enum="DebugFlags" is_bitfield="true">
262-
Flag is set if remotely debugged project is expected to use remote file system. If set, [method gen_export_flags] will add [code]--remove-fs[/code] and [code]--remote-fs-password[/code] (if password is set in the editor settings) command line arguments to the list.
262+
Flag is set if remotely debugged project is expected to use remote file system. If set, [method gen_export_flags] will add [code]--remote-fs[/code] and [code]--remote-fs-password[/code] (if password is set in the editor settings) command line arguments to the list.
263263
</constant>
264264
<constant name="DEBUG_FLAG_REMOTE_DEBUG" value="2" enum="DebugFlags" is_bitfield="true">
265265
Flag is set if remote debug is enabled. If set, [method gen_export_flags] will add [code]--remote-debug[/code] and [code]--breakpoints[/code] (if breakpoints are selected in the script editor or added by the plugin) command line arguments to the list.

doc/classes/EditorExportPreset.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<method name="are_advanced_options_enabled" qualifiers="const">
1313
<return type="bool" />
1414
<description>
15-
Returns [code]true[/code], is "Advanced" toggle is enabled in the export dialog.
15+
Returns [code]true[/code] if "Advanced" toggle is enabled in the export dialog.
1616
</description>
1717
</method>
1818
<method name="get_custom_features" qualifiers="const">
@@ -24,7 +24,7 @@
2424
<method name="get_customized_files" qualifiers="const">
2525
<return type="Dictionary" />
2626
<description>
27-
Returns [Dictionary] of files selected in the "Resources" tab of the export dialog. Dictionary keys are file names and values are export mode - [code]"strip[/code], [code]"keep"[/code], or [code]"remove"[/code]. See also [method get_file_export_mode].
27+
Returns [Dictionary] of files selected in the "Resources" tab of the export dialog. Dictionary keys are file names and values are export mode - [code]"strip"[/code], [code]"keep"[/code], or [code]"remove"[/code]. See also [method get_file_export_mode].
2828
</description>
2929
</method>
3030
<method name="get_customized_files_count" qualifiers="const">

0 commit comments

Comments
 (0)