Skip to content

Commit

Permalink
Fix a couple of typos
Browse files Browse the repository at this point in the history
  • Loading branch information
harlequin-tech committed Apr 11, 2012
1 parent bfbca76 commit 63c633f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/httpserver/httpserver.ino
Expand Up @@ -2,7 +2,7 @@
* WiFlyHQ Example httpserver.ino
*
* This sketch implements a simple Web server that waits for requests
* and servers up a small form asking for a username, then when the
* and serves up a small form asking for a username, then when the
* client posts that form the server sends a greeting page with the
* user's name and an analog reading.
*
Expand Down Expand Up @@ -115,7 +115,7 @@ void loop()
/* GET request */
Serial.println(F("Got GET request"));
while (wifly.gets(buf, sizeof(buf)) > 0) {
/* Skip reset of request */
/* Skip rest of request */
}
sendIndex();
Serial.println(F("Sent index page"));
Expand Down

0 comments on commit 63c633f

Please sign in to comment.