You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-04 19:21:46 +00:00
doc: Use self-closing tags for return and argument
For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there.
This commit is contained in:
@@ -12,15 +12,13 @@
|
||||
</tutorials>
|
||||
<methods>
|
||||
<method name="get_current_dependencies" qualifiers="const">
|
||||
<return type="PackedStringArray">
|
||||
</return>
|
||||
<return type="PackedStringArray" />
|
||||
<description>
|
||||
Returns paths to all dependency libraries for the current platform and architecture.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_current_library_path" qualifiers="const">
|
||||
<return type="String">
|
||||
</return>
|
||||
<return type="String" />
|
||||
<description>
|
||||
Returns the path to the dynamic library file for the current platform and architecture.
|
||||
</description>
|
||||
|
||||
Reference in New Issue
Block a user