diff options
author | derammo <817160+derammo@users.noreply.github.com> | 2022-08-24 06:11:34 -0400 |
---|---|---|
committer | derammo <817160+derammo@users.noreply.github.com> | 2022-08-24 06:49:03 -0400 |
commit | 672fa94fb8b48afcfbbe3144a07cde8f6a428f8b (patch) | |
tree | b2832fb49b60bdc12089647677b2782770c65778 /doc | |
parent | 0626ce50cfd35d1eb81c6c9627f8540be9636b4b (diff) |
fix arg naming in ResourceFormatLoader extension
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/ResourceFormatSaver.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/ResourceFormatSaver.xml b/doc/classes/ResourceFormatSaver.xml index a84c2165f5..05bfcf3446 100644 --- a/doc/classes/ResourceFormatSaver.xml +++ b/doc/classes/ResourceFormatSaver.xml @@ -26,8 +26,8 @@ </method> <method name="_save" qualifiers="virtual"> <return type="int" /> - <param index="0" name="path" type="Resource" /> - <param index="1" name="resource" type="String" /> + <param index="0" name="resource" type="Resource" /> + <param index="1" name="path" type="String" /> <param index="2" name="flags" type="int" /> <description> Saves the given resource object to a file at the target [param path]. [param flags] is a bitmask composed with [enum ResourceSaver.SaverFlags] constants. |