summaryrefslogtreecommitdiff
path: root/shared-bindings/network/__init__.c
diff options
context:
space:
mode:
Diffstat (limited to 'shared-bindings/network/__init__.c')
-rw-r--r--shared-bindings/network/__init__.c15
1 files changed, 5 insertions, 10 deletions
diff --git a/shared-bindings/network/__init__.c b/shared-bindings/network/__init__.c
index 01763a73c..6af86688e 100644
--- a/shared-bindings/network/__init__.c
+++ b/shared-bindings/network/__init__.c
@@ -38,20 +38,15 @@
#if CIRCUITPY_NETWORK
-//| :mod:`network` --- Network Interface Management
-//| ===============================================
-//|
-//| .. module:: network
-//| :synopsis: Network Interface Management
-//| :platform: SAMD
+//| """Network Interface Management
//|
//| 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.
-//|
-//| .. function:: route()
+//| NIC when a socket is created."""
//|
-//| Returns a list of all configured NICs.
+//| def route() -> Any:
+//| """Returns a list of all configured NICs."""
+//| ...
//|
STATIC mp_obj_t network_route(void) {