summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2015-09-02 10:35:34 +0300
committerRiccardo Magliocchetti <riccardo.magliocchetti@gmail.com>2015-11-09 18:00:18 +0100
commitaa6c9bcfdd927f7540fe00bfdd3934e198b6d541 (patch)
tree8bf3f19186e5534007c1553615b2071dca672ea2 /examples
parent61bda0e96ea704defdbfba9c9022e924a75c8d01 (diff)
downloaduwsgi-aa6c9bcfdd927f7540fe00bfdd3934e198b6d541.tar.gz
Spelling fixes
Diffstat (limited to 'examples')
-rw-r--r--examples/uwsgirouter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/uwsgirouter.py b/examples/uwsgirouter.py
index 6da6cc38..541238e4 100644
--- a/examples/uwsgirouter.py
+++ b/examples/uwsgirouter.py
@@ -37,7 +37,7 @@ def application(env, start_response):
# get the input fd
input = env['wsgi.input'].fileno()
- # read (in async mode) upto 'cl' data and send to uwsgi peer
+ # read (in async mode) up to 'cl' data and send to uwsgi peer
while cl > 0:
bufsize = min(cl, 4096)
yield uwsgi.wait_fd_read(input, 30)