[Python-checkins] r79359 - in python/branches/release26-maint: Doc/howto/webservers.rst

ezio.melotti python-checkins at python.org
Wed Mar 24 00:27:51 CET 2010


Author: ezio.melotti
Date: Wed Mar 24 00:27:51 2010
New Revision: 79359

Log:
Merged revisions 79358 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r79358 | ezio.melotti | 2010-03-24 01:26:21 +0200 (Wed, 24 Mar 2010) | 1 line
  
  #8217: typo.
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Doc/howto/webservers.rst

Modified: python/branches/release26-maint/Doc/howto/webservers.rst
==============================================================================
--- python/branches/release26-maint/Doc/howto/webservers.rst	(original)
+++ python/branches/release26-maint/Doc/howto/webservers.rst	Wed Mar 24 00:27:51 2010
@@ -38,7 +38,7 @@
 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


More information about the Python-checkins mailing list