[Python-checkins] cpython (2.7): Issue #26550: Fix typo in webservers HOWTO

berker.peksag python-checkins at python.org
Wed Sep 28 19:30:52 EDT 2016


https://hg.python.org/cpython/rev/522506fcff88
changeset:   104145:522506fcff88
branch:      2.7
parent:      104121:f2aff898f7c8
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Thu Sep 29 02:32:51 2016 +0300
summary:
  Issue #26550: Fix typo in webservers HOWTO

Reported by Alejandro Soini.

files:
  Doc/howto/webservers.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/howto/webservers.rst b/Doc/howto/webservers.rst
--- a/Doc/howto/webservers.rst
+++ b/Doc/howto/webservers.rst
@@ -364,8 +364,8 @@
 just download middleware which does that, plug it in, and get on with coding
 the unique parts of your application.  The same thing with compression -- there
 is existing middleware which handles compressing your HTML using gzip to save
-on your server's bandwidth.  Authentication is another a problem easily solved
-using existing middleware.
+on your server's bandwidth.  Authentication is another problem that is easily
+solved using existing middleware.
 
 Although WSGI may seem complex, the initial phase of learning can be very
 rewarding because WSGI and the associated middleware already have solutions to

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list