doc: Fix style for vararg in makerst

This commit is contained in:
Rémi Verschelde 2019-03-10 11:28:09 +01:00
parent 7052ddd706
commit 61771ad39b
2 changed files with 4 additions and 2 deletions

View file

@ -687,8 +687,10 @@
<method name="request_permission"> <method name="request_permission">
<return type="bool"> <return type="bool">
</return> </return>
<argument index="0" name="name" type="String">
</argument>
<description> <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> </description>
</method> </method>
<method name="set_icon"> <method name="set_icon">

View file

@ -954,7 +954,7 @@ def make_method_signature(class_def, method_def, make_ref, state): # type: (Cla
if len(method_def.parameters) > 0: if len(method_def.parameters) > 0:
out += ', ...' out += ', ...'
else: else:
out += '...' out += ' ...'
out += ' **)**' out += ' **)**'