[Checkins] SVN: z3c.form/trunk/src/z3c/form/interfaces.py Fixed typo in docstring

Vincent Fretin vincent.fretin at gmail.com
Wed Sep 23 11:54:42 EDT 2009


Log message for revision 104451:
  Fixed typo in docstring

Changed:
  U   z3c.form/trunk/src/z3c/form/interfaces.py

-=-
Modified: z3c.form/trunk/src/z3c/form/interfaces.py
===================================================================
--- z3c.form/trunk/src/z3c/form/interfaces.py	2009-09-23 14:48:03 UTC (rev 104450)
+++ z3c.form/trunk/src/z3c/form/interfaces.py	2009-09-23 15:54:42 UTC (rev 104451)
@@ -344,24 +344,24 @@
 # ----[ Object factory ]-----------------------------------------------------
 
 class IObjectFactory(zope.interface.Interface):
-    """Factory that will instatiate our objects for ObjectWidget
+    """Factory that will instantiate our objects for ObjectWidget.
     It could also pre-populate properties as it gets the values extracted
-    from the form passed in ``value``
+    from the form passed in ``value``.
     """
 
     def __call__(value):
-        """return a default object created to be populated
+        """Return a default object created to be populated.
         """
 
 
 # ----[ Subform factory ]-----------------------------------------------------
 
 class ISubformFactory(zope.interface.Interface):
-    """Factory that will instatiate our subforms for ObjectWidget
+    """Factory that will instantiate our subforms for ObjectWidget.
     """
 
     def __call__():
-        """return a default object created to be populated
+        """Return a default object created to be populated.
         """
 
 



More information about the checkins mailing list