Skip to content

Commit 0e7a434

Browse files
committed
Fixed Wifi example
1 parent d88236a commit 0e7a434

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

libraries/WiFi/examples/WifiWebServer/WifiWebServer.ino

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Web Server
2+
WiFi Web Server
33
44
A simple web server that shows the value of the analog input pins.
55
using a WiFi shield.
@@ -15,7 +15,9 @@
1515
by dlf (Metodo2 srl)
1616
modified 31 May 2012
1717
by Tom Igoe
18+
1819
*/
20+
1921
#include <SPI.h>
2022
#include <WiFi.h>
2123

@@ -76,7 +78,7 @@ void loop() {
7678
// send a standard http response header
7779
client.println("HTTP/1.1 200 OK");
7880
client.println("Content-Type: text/html");
79-
client.println("Connnection: close");
81+
client.println("Connection: close");
8082
client.println();
8183
client.println("<!DOCTYPE HTML>");
8284
client.println("<html>");

0 commit comments

Comments
 (0)