diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/OS.xml | 4 | ||||
-rwxr-xr-x | doc/tools/makerst.py | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/doc/classes/OS.xml b/doc/classes/OS.xml index 04aac298e5..edf8f507f0 100644 --- a/doc/classes/OS.xml +++ b/doc/classes/OS.xml @@ -687,8 +687,10 @@ <method name="request_permission"> <return type="bool"> </return> + <argument index="0" name="name" type="String"> + </argument> <description> - At the moment this function is only used by the AudioDriverOpenSL to request permission for RECORD_AUDIO on Android. + At the moment this function is only used by [code]AudioDriverOpenSL[/code] to request permission for [code]RECORD_AUDIO[/code] on Android. </description> </method> <method name="set_icon"> diff --git a/doc/tools/makerst.py b/doc/tools/makerst.py index 4b5785f604..40dde48432 100755 --- a/doc/tools/makerst.py +++ b/doc/tools/makerst.py @@ -954,7 +954,7 @@ def make_method_signature(class_def, method_def, make_ref, state): # type: (Cla if len(method_def.parameters) > 0: out += ', ...' else: - out += '...' + out += ' ...' out += ' **)**' |