From 4d47deab249dd96437d3e7b7fc07eb2be4356d17 Mon Sep 17 00:00:00 2001 From: Joey Babcock Date: Wed, 14 Jun 2017 01:12:59 -0700 Subject: [PATCH] Some grammar/spelling fixes (#438) --- .../examples/SimpleWiFiServer/SimpleWiFiServer.ino | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libraries/WiFi/examples/SimpleWiFiServer/SimpleWiFiServer.ino b/libraries/WiFi/examples/SimpleWiFiServer/SimpleWiFiServer.ino index b561be37..91ac9078 100644 --- a/libraries/WiFi/examples/SimpleWiFiServer/SimpleWiFiServer.ino +++ b/libraries/WiFi/examples/SimpleWiFiServer/SimpleWiFiServer.ino @@ -1,5 +1,5 @@ /* - WiFi Web Server LED Blink + WiFi Web Server LED Blink A simple web server that lets you blink an LED via the web. This sketch will print the IP address of your WiFi Shield (once connected) @@ -54,7 +54,7 @@ void setup() } Serial.println(""); - Serial.println("WiFi connected"); + Serial.println("WiFi connected."); Serial.println("IP address: "); Serial.println(WiFi.localIP()); @@ -68,7 +68,7 @@ void loop(){ WiFiClient client = server.available(); // listen for incoming clients if (client) { // if you get a client, - Serial.println("new client"); // print a message out the serial port + Serial.println("New Client."); // print a message out the serial port String currentLine = ""; // make a String to hold incoming data from the client while (client.connected()) { // loop while the client's connected if (client.available()) { // if there's bytes to read from the client, @@ -86,8 +86,8 @@ void loop(){ client.println(); // the content of the HTTP response follows the header: - client.print("Click here turn the LED on pin 5 on
"); - client.print("Click here turn the LED on pin 5 off
"); + client.print("Click here to turn the LED on pin 5 on.
"); + client.print("Click here to turn the LED on pin 5 off.
"); // The HTTP response ends with another blank line: client.println(); @@ -111,6 +111,6 @@ void loop(){ } // close the connection: client.stop(); - Serial.println("client disonnected"); + Serial.println("Client Disconnected."); } }