web/formwidgets.py
branchstable
changeset 9703 79ad734ca4d3
parent 9701 46c8d8701240
child 9770 112c884b2d8d
--- a/web/formwidgets.py	Mon Apr 14 12:27:37 2014 +0200
+++ b/web/formwidgets.py	Mon Apr 14 12:29:01 2014 +0200
@@ -315,7 +315,7 @@
 
 
 class PasswordSingleInput(Input):
-    """Simple <input type='password'>, will return an utf-8 encoded string.
+    """Simple <input type='password'>, will return a utf-8 encoded string.
 
     You may prefer using the :class:`~cubicweb.web.formwidgets.PasswordInput`
     widget which handles password confirmation.
@@ -332,7 +332,7 @@
 class PasswordInput(Input):
     """<input type='password'> and a confirmation input. Form processing will
     fail if password and confirmation differs, else it will return the password
-    as an utf-8 encoded string.
+    as a utf-8 encoded string.
     """
     type = 'password'