Skip to content

Commit 670cfb6

Browse files
committed
Fixe spelling
1 parent 685f2c9 commit 670cfb6

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

libraries/ESP8266WebServer/examples/WebServer/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ The **serveStatic** plug in is part of the library and handles delivering files
122122
> ```
123123
124124
125-
### Cross-Origin Ressource Sharing (CORS)
125+
### Cross-Origin Resource Sharing (CORS)
126126
127127
The `enableCORS(true)` function adds a `Access-Control-Allow-Origin: *` http-header to all responses to the client
128128
to inform that it is allowed to call URLs and services on this server from other web sites.

libraries/ESP8266WebServer/examples/WebServer/WebServer.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public:
104104

105105
// @brief check incoming request. Can handle POST for uploads and DELETE.
106106
// @param requestMethod method of the http request line.
107-
// @param requestUri request ressource from the http request line.
107+
// @param requestUri request resource from the http request line.
108108
// @return true when method can be handled.
109109
bool canHandle(HTTPMethod requestMethod, const String UNUSED &_uri) override {
110110
return ((requestMethod == HTTP_POST) || (requestMethod == HTTP_DELETE));

libraries/ESP8266WebServer/examples/WebServer/builtinfiles.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ R"==(
5454
static const char notFoundContent[] PROGMEM = R"==(
5555
<html>
5656
<head>
57-
<title>Ressource not found</title>
57+
<title>Resource not found</title>
5858
</head>
5959
<body>
60-
<p>The ressource was not found.</p>
60+
<p>The resource was not found.</p>
6161
<p><a href="/">Start again</a></p>
6262
</body>
6363
)==";

package-lock.json

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)