docs: Use the correct * keyword-only notation.

This commit is contained in:
Jos Verlinde
2021-07-12 18:04:56 +02:00
committed by Damien George
parent a41abd94dc
commit cd0531c533
3 changed files with 5 additions and 5 deletions

View File

@@ -23,7 +23,7 @@ Example usage::
Constructors
------------
.. class:: PWM(dest, \*, freq, duty_u16, duty_ns)
.. class:: PWM(dest, *, freq, duty_u16, duty_ns)
Construct and return a new PWM object using the following parameters:
@@ -42,7 +42,7 @@ Constructors
Methods
-------
.. method:: PWM.init(\*, freq, duty_u16, duty_ns)
.. method:: PWM.init(*, freq, duty_u16, duty_ns)
Modify settings for the PWM object. See the above constructor for details
about the parameters.