From 63c633fb94e2e382d23ad904056088c91562e773 Mon Sep 17 00:00:00 2001 From: Darran Hunt Date: Wed, 11 Apr 2012 23:22:45 +1200 Subject: [PATCH] Fix a couple of typos --- examples/httpserver/httpserver.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/httpserver/httpserver.ino b/examples/httpserver/httpserver.ino index a2f252a..695bc52 100644 --- a/examples/httpserver/httpserver.ino +++ b/examples/httpserver/httpserver.ino @@ -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. * @@ -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"));