Rename "file" param for str.path_join() to "path"

This commit is contained in:
Max Hilbrunner
2025-02-24 23:52:33 +01:00
parent 39c201ca58
commit 3275116304
4 changed files with 6 additions and 6 deletions

View File

@ -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>