Remove unneeded indent in "HTTP client class"

This commit is contained in:
Andrew Conrad
2016-03-30 14:10:49 -05:00
parent bc5753506b
commit 50b54fbc99

View File

@@ -27,9 +27,8 @@ It will connect and fetch a website.
var err = http.connect("www.php.net",80) # Connect to host/port
assert(err==OK) # Make sure connection was OK
# Wait until resolved and connected
while( http.get_status()==HTTPClient.STATUS_CONNECTING or http.get_status()==HTTPClient.STATUS_RESOLVING):
# Wait until resolved and connected
http.poll()
print("Connecting..")
OS.delay_msec(500)