Skip to content

Commit 76dcadd

Browse files
committed
docs/esp8266/quickref: Add internal links to docs for some modules.
1 parent efc904c commit 76dcadd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/esp8266/quickref.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ Tab-completion is useful to find out what methods an object has.
2323
Paste mode (ctrl-E) is useful to paste a large slab of Python code into
2424
the REPL.
2525

26-
The ``machine`` module::
26+
The :mod:`machine` module::
2727

2828
import machine
2929

3030
machine.freq() # get the current frequency of the CPU
3131
machine.freq(160000000) # set the CPU frequency to 160 MHz
3232

33-
The ``esp`` module::
33+
The :mod:`esp` module::
3434

3535
import esp
3636

@@ -40,7 +40,7 @@ The ``esp`` module::
4040
Networking
4141
----------
4242

43-
The ``network`` module::
43+
The :mod:`network` module::
4444

4545
import network
4646

@@ -69,13 +69,13 @@ A useful function for connecting to your local WiFi network is::
6969
pass
7070
print('network config:', wlan.ifconfig())
7171

72-
Once the network is established the ``socket`` module can be used
72+
Once the network is established the :mod:`socket <usocket>` module can be used
7373
to create and use TCP/UDP sockets as usual.
7474

7575
Delay and timing
7676
----------------
7777

78-
Use the ``time`` module::
78+
Use the :mod:`time <utime>` module::
7979

8080
import time
8181

0 commit comments

Comments
 (0)