summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/library/usocket.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/library/usocket.rst b/docs/library/usocket.rst
index de55fc14c..3ae477a9a 100644
--- a/docs/library/usocket.rst
+++ b/docs/library/usocket.rst
@@ -99,7 +99,7 @@ Functions
of error in this function. MicroPython doesn't have ``socket.gaierror``
and raises OSError directly. Note that error numbers of `getaddrinfo()`
form a separate namespace and may not match error numbers from
- `uerrno` module. To distinguish `getaddrinfo()` errors, they are
+ the :mod:`uerrno` module. To distinguish `getaddrinfo()` errors, they are
represented by negative numbers, whereas standard system errors are
positive numbers (error numbers are accessible using ``e.args[0]`` property
from an exception object). The use of negative values is a provisional