diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-12-20 12:43:15 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-12-20 12:43:15 +0100 |
commit | 08f6a46a8de4846a41b09b32ec698f8928eed32d (patch) | |
tree | 2e4b79f13e8c023f988c5378636e1834d69a4446 /doc | |
parent | 4f95912d8a9faeed94329854bf21b95b6a5ed35a (diff) | |
parent | 18df2f36e8bbab621f2cae9035c77fffac57d1e2 (diff) |
Merge pull request #70342 from twaritwaikar/fix-vcs-bindings
VCS: Fix GDExtension return types for VCS after Array type hardening
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/EditorVCSInterface.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/EditorVCSInterface.xml b/doc/classes/EditorVCSInterface.xml index b766978c04..85c10fefd9 100644 --- a/doc/classes/EditorVCSInterface.xml +++ b/doc/classes/EditorVCSInterface.xml @@ -53,7 +53,7 @@ </description> </method> <method name="_get_branch_list" qualifiers="virtual"> - <return type="Dictionary[]" /> + <return type="String[]" /> <description> Gets an instance of an [Array] of [String]s containing available branch names in the VCS. </description> @@ -94,7 +94,7 @@ </description> </method> <method name="_get_remotes" qualifiers="virtual"> - <return type="Dictionary[]" /> + <return type="String[]" /> <description> Returns an [Array] of [String]s, each containing the name of a remote configured in the VCS. </description> |