summaryrefslogtreecommitdiff
path: root/docs/wipy
diff options
context:
space:
mode:
Diffstat (limited to 'docs/wipy')
-rw-r--r--docs/wipy/general.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/wipy/general.rst b/docs/wipy/general.rst
index 7f24435db..a1c8df8ef 100644
--- a/docs/wipy/general.rst
+++ b/docs/wipy/general.rst
@@ -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.
@@ -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::