Skip to content

Commit

Permalink
docs: Use the correct * keyword-only notation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jos Verlinde authored and dpgeorge committed Feb 9, 2022
1 parent a41abd9 commit cd0531c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/library/machine.PWM.rst
Expand Up @@ -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:

Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/library/pyb.Pin.rst
Expand Up @@ -98,7 +98,7 @@ Class methods
Methods
-------

.. method:: Pin.init(mode, pull=Pin.PULL_NONE, \*, value=None, alt=-1)
.. method:: Pin.init(mode, pull=Pin.PULL_NONE, *, value=None, alt=-1)

Initialise the pin:

Expand Down
4 changes: 2 additions & 2 deletions docs/wipy/general.rst
Expand Up @@ -345,7 +345,7 @@ Example::

Create a server instance, see ``init`` for parameters of initialization.

.. method:: server.init(\*, login=('micro', 'python'), timeout=300)
.. method:: server.init(*, login=('micro', 'python'), timeout=300)

Init (and effectively start the server). Optionally a new ``user``, ``password``
and ``timeout`` (in seconds) can be passed.
Expand All @@ -368,7 +368,7 @@ Adhoc VFS-like support
WiPy doesn't implement full MicroPython VFS support, instead following
functions are defined in ``os`` module:

.. function:: mount(block_device, mount_point, \*, readonly=False)
.. function:: mount(block_device, mount_point, *, readonly=False)

Mounts a block device (like an ``SD`` object) in the specified mount
point. Example::
Expand Down

0 comments on commit cd0531c

Please sign in to comment.