We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8a7df9 commit d107d3aCopy full SHA for d107d3a
1 file changed
README.md
@@ -30,13 +30,13 @@ if (success) // If no HTTP parsing error or read timeout occurred.
30
31
### Writing an HTTP reply to some Stream
32
```c++
33
-ArduinoHttpServer::StreamHttpReply<127> httpReply(Serial, "application/json");
+ArduinoHttpServer::StreamHttpReply httpReply(Serial, "application/json");
34
httpReply.send("{\"All your base are belong to us!\"}");
35
```
36
37
Characteristics
38
---------------
39
-* HTTP parser with with protocol validation.
+* HTTP parser with protocol validation.
40
* Puts you in control on how to react on a HTTP request; no implicit behaviour.
41
* Customizable memory footprint for caching returned body data.
42
* No external dependencies outside of the standard Arduino framework.
0 commit comments