summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2020-03-01 03:55:28 -0800
committerGitHub <noreply@github.com>2020-03-01 03:55:28 -0800
commitfc4a5ebaf94a5a0a73900e86f8a55895d0204e2f (patch)
treea2792292860663223db8ee3d31e7029380e12e38
parent53dcae9a799e6389dad021e8ba863fe5021d182e (diff)
parentd8931173ea05e5ac17fc43c68b5f1d6086f15bb5 (diff)
downloadwaitress-fc4a5ebaf94a5a0a73900e86f8a55895d0204e2f.tar.gz
Merge pull request #284 from timgates42/bugfix_typo_separated
Fix simple typo: seperated -> separated
-rw-r--r--waitress/parser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/waitress/parser.py b/waitress/parser.py
index fef8a3d..53072b5 100644
--- a/waitress/parser.py
+++ b/waitress/parser.py
@@ -224,8 +224,8 @@ class HTTPRequestParser(object):
value = value.strip(b" \t")
key1 = tostr(key.upper().replace(b"-", b"_"))
# If a header already exists, we append subsequent values
- # seperated by a comma. Applications already need to handle
- # the comma seperated values, as HTTP front ends might do
+ # separated by a comma. Applications already need to handle
+ # the comma separated values, as HTTP front ends might do
# the concatenation for you (behavior specified in RFC2616).
try:
headers[key1] += tostr(b", " + value)