[Checkins] SVN: zope.app.publication/trunk/src/zope/app/publication/ A few typo fixes.

Martijn Faassen faassen at infrae.com
Mon Aug 6 13:54:34 EDT 2007


Log message for revision 78632:
  A few typo fixes.
  

Changed:
  U   zope.app.publication/trunk/src/zope/app/publication/httpfactory.py
  U   zope.app.publication/trunk/src/zope/app/publication/requestpublicationregistry.py

-=-
Modified: zope.app.publication/trunk/src/zope/app/publication/httpfactory.py
===================================================================
--- zope.app.publication/trunk/src/zope/app/publication/httpfactory.py	2007-08-06 16:39:21 UTC (rev 78631)
+++ zope.app.publication/trunk/src/zope/app/publication/httpfactory.py	2007-08-06 17:54:34 UTC (rev 78632)
@@ -28,7 +28,7 @@
 
 def chooseClasses(method, environment):
     """Given the method and environment, choose the correct request and
-    publication factort."""
+    publication factory."""
     content_type = environment.get('CONTENT_TYPE', '')
     factory = factoryRegistry.lookup(method, content_type, environment)
     request_class, publication = factory()

Modified: zope.app.publication/trunk/src/zope/app/publication/requestpublicationregistry.py
===================================================================
--- zope.app.publication/trunk/src/zope/app/publication/requestpublicationregistry.py	2007-08-06 16:39:21 UTC (rev 78631)
+++ zope.app.publication/trunk/src/zope/app/publication/requestpublicationregistry.py	2007-08-06 17:54:34 UTC (rev 78632)
@@ -13,7 +13,7 @@
 ##############################################################################
 """A registry for Request-Publication factories.
 
-$Id: publicationfactories.py 38841 2005-10-07 04:34:09Z andreasjung $
+$Id$
 """
 __docformat__ = 'restructuredtext'
 
@@ -23,7 +23,7 @@
 from zope.configuration.exceptions import ConfigurationError
 
 class RequestPublicationRegistry(object):
-    """The registry implements a three stage lookup for registred factories
+    """The registry implements a three stage lookup for registered factories
     that have to deal with requests::
 
       {method > { mimetype -> [{'priority' : some_int,



More information about the Checkins mailing list