Fix typo in documentation example

This commit is contained in:
Brad Anderson
2017-05-05 14:05:44 -06:00
committed by Vinnie Falco
parent e4a204b145
commit 20c1ba78f1

View File

@ -149,7 +149,7 @@ object:
res.version = 11; // HTTP/1.1
res.status = 200;
res.reason = "OK";
res.fields.insert("Sever", "Beast");
res.fields.insert("Server", "Beast");
res.fields.insert("Content-Length", 4);
res.body = "****";
```