summaryrefslogtreecommitdiff
path: root/waitress/parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'waitress/parser.py')
-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)