summaryrefslogtreecommitdiffstatshomepage
path: root/docs/esp8266/tutorial
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2019-12-04 15:02:54 +1100
committerDamien George <damien.p.george@gmail.com>2019-12-04 15:02:54 +1100
commit90c524c1141ed9ad8fa882dba6f36199a7768e32 (patch)
tree0ee0799df23cb231c47de6f0b885d6f124e448c6 /docs/esp8266/tutorial
parent40cc7ec677e962c47db567479e42c27ed8911ff6 (diff)
downloadmicropython-90c524c1141ed9ad8fa882dba6f36199a7768e32.tar.gz
micropython-90c524c1141ed9ad8fa882dba6f36199a7768e32.zip
docs: Remove spaces on lines that are empty.
Diffstat (limited to 'docs/esp8266/tutorial')
-rw-r--r--docs/esp8266/tutorial/network_tcp.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/esp8266/tutorial/network_tcp.rst b/docs/esp8266/tutorial/network_tcp.rst
index 852fc82f39..d479f62e6a 100644
--- a/docs/esp8266/tutorial/network_tcp.rst
+++ b/docs/esp8266/tutorial/network_tcp.rst
@@ -44,7 +44,7 @@ Now that we are connected we can download and display the data::
... data = s.recv(500)
... print(str(data, 'utf8'), end='')
...
-
+
When this loop executes it should start showing the animation (use ctrl-C to
interrupt it).