doc: Fix style for vararg in makerst
This commit is contained in:
parent
7052ddd706
commit
61771ad39b
2 changed files with 4 additions and 2 deletions
|
@ -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">
|
||||
|
|
|
@ -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 += ' **)**'
|
||||
|
||||
|
|
Loading…
Reference in a new issue