summaryrefslogtreecommitdiff
path: root/shared-bindings/network
diff options
context:
space:
mode:
authordherrada <dylan.herrada@gmail.com>2020-05-07 18:40:46 -0400
committerdherrada <dylan.herrada@gmail.com>2020-05-07 18:40:46 -0400
commitd750096befe2e6d23b1d0d4796306382cfbbb198 (patch)
treeecf89018194edcf222482e61850ec182e34f5f89 /shared-bindings/network
parente31e9eeaa1e1dad1bd2243b7be76012aa2ee64b8 (diff)
Did neopixel, network, nvm
Diffstat (limited to 'shared-bindings/network')
-rw-r--r--shared-bindings/network/__init__.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/shared-bindings/network/__init__.c b/shared-bindings/network/__init__.c
index 01763a73c..4f03781cf 100644
--- a/shared-bindings/network/__init__.c
+++ b/shared-bindings/network/__init__.c
@@ -38,7 +38,7 @@
#if CIRCUITPY_NETWORK
-//| :mod:`network` --- Network Interface Management
+//| """:mod:`network` --- Network Interface Management
//| ===============================================
//|
//| .. module:: network
@@ -47,11 +47,11 @@
//|
//| This module provides a registry of configured NICs.
//| It is used by the 'socket' module to look up a suitable
-//| NIC when a socket is created.
+//| NIC when a socket is created."""
//|
-//| .. function:: route()
-//|
-//| Returns a list of all configured NICs.
+//| def route() -> Any:
+//| """Returns a list of all configured NICs."""
+//| ...
//|
STATIC mp_obj_t network_route(void) {