aboutsummaryrefslogtreecommitdiffstats
path: root/include/http_connection.h
diff options
context:
space:
mode:
authorJaeseung Ha <ipknhama@gmail.com>2016-03-14 19:44:27 +0900
committerJaeseung Ha <ipknhama@gmail.com>2016-03-14 19:44:27 +0900
commit0bef5731e6a2650803c7523509ad832febff5d60 (patch)
tree0c5e73ee163936edef97c0501592695372fcb2f9 /include/http_connection.h
parent206ecc77601725f3b3a34f28c58b00b835177148 (diff)
parent7712b8b8e06f3d05ec29f5858beb0c268d3584c2 (diff)
downloadcrow-0bef5731e6a2650803c7523509ad832febff5d60.tar.gz
crow-0bef5731e6a2650803c7523509ad832febff5d60.zip
Merge pull request #124 from pierobot/fix-typo
Fix misspell of Connection
Diffstat (limited to 'include/http_connection.h')
-rw-r--r--include/http_connection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/http_connection.h b/include/http_connection.h
index 3d516a9..de89022 100644
--- a/include/http_connection.h
+++ b/include/http_connection.h
@@ -420,7 +420,7 @@ namespace crow
}
if (add_keep_alive_)
{
- static std::string keep_alive_tag = "Connetion: Keep-Alive";
+ static std::string keep_alive_tag = "Connection: Keep-Alive";
buffers_.emplace_back(keep_alive_tag.data(), keep_alive_tag.size());
buffers_.emplace_back(crlf.data(), crlf.size());
}