mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
Merge pull request #103264 from mhilbrunner/docs-path-join
Rename "file" param for str.path_join() to "path"
This commit is contained in:
@@ -757,9 +757,9 @@
|
||||
</method>
|
||||
<method name="path_join" qualifiers="const">
|
||||
<return type="String" />
|
||||
<param index="0" name="file" type="String" />
|
||||
<param index="0" name="path" type="String" />
|
||||
<description>
|
||||
Concatenates [param file] at the end of the string as a subpath, adding [code]/[/code] if necessary.
|
||||
Concatenates [param path] at the end of the string as a subpath, adding [code]/[/code] if necessary.
|
||||
[b]Example:[/b] [code]"this/is".path_join("path") == "this/is/path"[/code].
|
||||
</description>
|
||||
</method>
|
||||
|
||||
@@ -665,9 +665,9 @@
|
||||
</method>
|
||||
<method name="path_join" qualifiers="const">
|
||||
<return type="String" />
|
||||
<param index="0" name="file" type="String" />
|
||||
<param index="0" name="path" type="String" />
|
||||
<description>
|
||||
Concatenates [param file] at the end of the string as a subpath, adding [code]/[/code] if necessary.
|
||||
Concatenates [param path] at the end of the string as a subpath, adding [code]/[/code] if necessary.
|
||||
[b]Example:[/b] [code]"this/is".path_join("path") == "this/is/path"[/code].
|
||||
</description>
|
||||
</method>
|
||||
|
||||
Reference in New Issue
Block a user