From 20c1ba78f1a577b1384a229ee8c516f3380f8cd7 Mon Sep 17 00:00:00 2001 From: Brad Anderson Date: Fri, 5 May 2017 14:05:44 -0600 Subject: [PATCH] Fix typo in documentation example --- doc/http.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/http.qbk b/doc/http.qbk index b9d520bf..5d6bae74 100644 --- a/doc/http.qbk +++ b/doc/http.qbk @@ -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 = "****"; ```