diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-09-28 23:32:51 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-09-28 23:32:51 (GMT) |
commit | 6f959d07dba4eb8bc62f883957a0c779c2677779 (patch) | |
tree | d32946bd9d0ca2448661b9ee29f5dbf0ca092442 | |
parent | 8cab419624cba0df59fb2d61261a59230ef4578c (diff) | |
download | cpython-6f959d07dba4eb8bc62f883957a0c779c2677779.zip cpython-6f959d07dba4eb8bc62f883957a0c779c2677779.tar.gz cpython-6f959d07dba4eb8bc62f883957a0c779c2677779.tar.bz2 |
Issue #26550: Fix typo in webservers HOWTO
Reported by Alejandro Soini.
-rw-r--r-- | Doc/howto/webservers.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/webservers.rst b/Doc/howto/webservers.rst index 5d401e8..a555083 100644 --- a/Doc/howto/webservers.rst +++ b/Doc/howto/webservers.rst @@ -364,8 +364,8 @@ user your application must create and manage such state via a session), you can 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 |