summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-03-23 23:26:21 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-03-23 23:26:21 (GMT)
commitd72a628797326551fea6e4750c05e56bf3db4ecf (patch)
tree0bf3b23cc9cc8ce22d79dde6b222de77a14064b7 /Doc
parentd4b721bc005085ed6d7072a896acce008c67a2fc (diff)
downloadcpython-d72a628797326551fea6e4750c05e56bf3db4ecf.zip
cpython-d72a628797326551fea6e4750c05e56bf3db4ecf.tar.gz
cpython-d72a628797326551fea6e4750c05e56bf3db4ecf.tar.bz2
#8217: typo.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/howto/webservers.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/webservers.rst b/Doc/howto/webservers.rst
index 0829292..8cff555 100644
--- a/Doc/howto/webservers.rst
+++ b/Doc/howto/webservers.rst
@@ -38,7 +38,7 @@ The low-level view
When a user enters a web site, his browser makes a connection to the site's
webserver (this is called the *request*). The server looks up the file in the
file system and sends it back to the user's browser, which displays it (this is
-the *response*). This is roughly how the unterlying protocol, HTTP works.
+the *response*). This is roughly how the underlying protocol, HTTP, works.
Now, dynamic web sites are not files in the file system, but rather programs
which are run by the web server when a request comes in. They can do all sorts