mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
doc: Fix parsing of self-closing XML tags
Follow-up to #31925, `<member />` tags just before `</members>` would cause a parsing issue, and we'd never notice that we're no longer parsing members. Also added space before closing `/>`.
This commit is contained in:
@@ -655,6 +655,15 @@
|
||||
If the string is a path, this concatenates [code]file[/code] at the end of the string as a subpath. E.g. [code]"this/is".plus_file("path") == "this/is/path"[/code].
|
||||
</description>
|
||||
</method>
|
||||
<method name="repeat">
|
||||
<return type="String">
|
||||
</return>
|
||||
<argument index="0" name="count" type="int">
|
||||
</argument>
|
||||
<description>
|
||||
Returns original string repeated a number of times. The number of repetitions is given by the argument.
|
||||
</description>
|
||||
</method>
|
||||
<method name="replace">
|
||||
<return type="String">
|
||||
</return>
|
||||
@@ -677,15 +686,6 @@
|
||||
Replaces occurrences of a case-insensitive substring with the given one inside the string.
|
||||
</description>
|
||||
</method>
|
||||
<method name="repeat">
|
||||
<return type="String">
|
||||
</return>
|
||||
<argument index="0" name="count" type="int">
|
||||
</argument>
|
||||
<description>
|
||||
Returns original string repeated a number of times. The number of repetitions is given by the argument.
|
||||
</description>
|
||||
</method>
|
||||
<method name="rfind">
|
||||
<return type="int">
|
||||
</return>
|
||||
|
||||
Reference in New Issue
Block a user