[Zope3-checkins] CVS: Zope3/src/zope/app/form - utility.py:1.4

R. David Murray bitz@bitdance.com
Sat, 25 Jan 2003 00:19:14 -0500


Update of /cvs-repository/Zope3/src/zope/app/form
In directory cvs.zope.org:/tmp/cvs-serv16953

Modified Files:
	utility.py 
Log Message:
Comment typo fixes.


=== Zope3/src/zope/app/form/utility.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/form/utility.py:1.3	Thu Jan  9 09:13:08 2003
+++ Zope3/src/zope/app/form/utility.py	Sat Jan 25 00:19:10 2003
@@ -14,7 +14,7 @@
 """Form utility functions
 
 In Zope 2's formulator, forms provide a basic mechanism for
-organizating collections of fields and providing unsert interfaces for
+organizating collections of fields and providing user interfaces for
 them, especially editing interfaces.
 
 In Zope 3, formulator's forms are replaced by Schema (See
@@ -66,7 +66,7 @@
         setattr(view, name, widget)
 
     else:
-        # We have an attribute of the right name, it it really a widget
+        # We have an attribute of the right name, is it really a widget
         if IViewFactory.isImplementedBy(widget):
             # This is a view factory, probably a custom widget.
             # Try to make it into a widget.