[Zope3-checkins] CVS: Zope3/src/zope/publisher/interfaces - __init__.py:1.4

Steve Alexander steve@cat-box.net
Thu, 2 Jan 2003 10:02:01 -0500


Update of /cvs-repository/Zope3/src/zope/publisher/interfaces
In directory cvs.zope.org:/tmp/cvs-serv29444/src/zope/publisher/interfaces

Modified Files:
	__init__.py 
Log Message:
fixed typos in docs.


=== Zope3/src/zope/publisher/interfaces/__init__.py 1.3 => 1.4 ===
--- Zope3/src/zope/publisher/interfaces/__init__.py:1.3	Fri Dec 27 11:40:25 2002
+++ Zope3/src/zope/publisher/interfaces/__init__.py	Thu Jan  2 10:01:58 2003
@@ -87,7 +87,7 @@
         return 'Location: %s' % self.location
 
 
-class Retry (PublishingException):
+class Retry(PublishingException):
     """Raise this to retry a request.
     """
 
@@ -296,7 +296,7 @@
         Return a request suitable for repeating the publication attempt.
         """
 
-    publication = Attribute("""the request's publication object
+    publication = Attribute("""The request's publication object
 
         The publication object, an IRequestPublication provides
         application-specific functionality hooks.
@@ -336,14 +336,14 @@
                         This is a read-only attribute.
                         """)
 
-    body = Attribute("""the body of the request as a string""")
+    body = Attribute("""The body of the request as a string""")
 
-    bodyFile = Attribute("""the body of the request as a file""")
+    bodyFile = Attribute("""The body of the request as a file""")
 
     def __getitem__(key):
         """Return request data
 
-        The only request data are envirnment variables.
+        The only request data are environment variables.
         """
 
     environment = Attribute(