mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
[doc] Use "param" instead of "code" to refer to parameters (7)
This commit is contained in:
@@ -21,8 +21,8 @@
|
||||
<param index="0" name="path" type="String" />
|
||||
<param index="1" name="public_only" type="bool" default="false" />
|
||||
<description>
|
||||
Loads a key from [code]path[/code]. If [code]public_only[/code] is [code]true[/code], only the public key will be loaded.
|
||||
[b]Note:[/b] [code]path[/code] should be a "*.pub" file if [code]public_only[/code] is [code]true[/code], a "*.key" file otherwise.
|
||||
Loads a key from [param path]. If [param public_only] is [code]true[/code], only the public key will be loaded.
|
||||
[b]Note:[/b] [param path] should be a "*.pub" file if [param public_only] is [code]true[/code], a "*.key" file otherwise.
|
||||
</description>
|
||||
</method>
|
||||
<method name="load_from_string">
|
||||
@@ -30,7 +30,7 @@
|
||||
<param index="0" name="string_key" type="String" />
|
||||
<param index="1" name="public_only" type="bool" default="false" />
|
||||
<description>
|
||||
Loads a key from the given [code]string[/code]. If [code]public_only[/code] is [code]true[/code], only the public key will be loaded.
|
||||
Loads a key from the given [param string_key]. If [param public_only] is [code]true[/code], only the public key will be loaded.
|
||||
</description>
|
||||
</method>
|
||||
<method name="save">
|
||||
@@ -38,15 +38,15 @@
|
||||
<param index="0" name="path" type="String" />
|
||||
<param index="1" name="public_only" type="bool" default="false" />
|
||||
<description>
|
||||
Saves a key to the given [code]path[/code]. If [code]public_only[/code] is [code]true[/code], only the public key will be saved.
|
||||
[b]Note:[/b] [code]path[/code] should be a "*.pub" file if [code]public_only[/code] is [code]true[/code], a "*.key" file otherwise.
|
||||
Saves a key to the given [param path]. If [param public_only] is [code]true[/code], only the public key will be saved.
|
||||
[b]Note:[/b] [param path] should be a "*.pub" file if [param public_only] is [code]true[/code], a "*.key" file otherwise.
|
||||
</description>
|
||||
</method>
|
||||
<method name="save_to_string">
|
||||
<return type="String" />
|
||||
<param index="0" name="public_only" type="bool" default="false" />
|
||||
<description>
|
||||
Returns a string containing the key in PEM format. If [code]public_only[/code] is [code]true[/code], only the public key will be included.
|
||||
Returns a string containing the key in PEM format. If [param public_only] is [code]true[/code], only the public key will be included.
|
||||
</description>
|
||||
</method>
|
||||
</methods>
|
||||
|
||||
Reference in New Issue
Block a user