[Zope-Checkins] CVS: Zope3/lib/python/Zope/Publisher - IPublisherRequest.py:1.1.2.6
Steve Alexander
steve@cat-box.net
Sun, 7 Apr 2002 14:41:47 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/Publisher
In directory cvs.zope.org:/tmp/cvs-serv14747/Zope/Publisher
Modified Files:
Tag: Zope-3x-branch
IPublisherRequest.py
Log Message:
fixed small typos in docstrings.
=== Zope3/lib/python/Zope/Publisher/IPublisherRequest.py 1.1.2.5 => 1.1.2.6 ===
"""Request interface use by the publisher
- The responsability of requests is to encapsulate protocol
+ The responsibility of requests is to encapsulate protocol
specific details, especially wrt request inputs.
- Request objects also serve as "context" objects. providing
+ Request objects also serve as "context" objectsm providing
construction of and access to responses and storage of publication
objects.
@@ -44,14 +44,14 @@
"""
def getPublication():
- """Return the requets's publication object
+ """Return the request's publication object
The publication object, an IRequestPublication provides
application-specific functionality hooks.
"""
def setPublication(publication):
- """Set the requets's publication object
+ """Set the request's publication object
"""
def traverse(object):