diff -r 95902c0b991b -r 2077c8da1893 web/formwidgets.py
--- a/web/formwidgets.py Fri May 23 18:35:13 2014 +0200
+++ b/web/formwidgets.py Fri Jun 27 11:48:26 2014 +0200
@@ -313,7 +313,7 @@
# basic html widgets ###########################################################
class TextInput(Input):
- """Simple , will return an unicode string."""
+ """Simple , will return a unicode string."""
type = 'text'
@@ -323,7 +323,7 @@
class PasswordSingleInput(Input):
- """Simple , will return an utf-8 encoded string.
+ """Simple , will return a utf-8 encoded string.
You may prefer using the :class:`~cubicweb.web.formwidgets.PasswordInput`
widget which handles password confirmation.
@@ -340,7 +340,7 @@
class PasswordInput(Input):
""" 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'
@@ -381,7 +381,7 @@
class HiddenInput(Input):
- """Simple for hidden value, will return an unicode
+ """Simple for hidden value, will return a unicode
string.
"""
type = 'hidden'
@@ -390,7 +390,7 @@
class ButtonInput(Input):
- """Simple , will return an unicode string.
+ """Simple , will return a unicode string.
If you want a global form button, look at the :class:`Button`,
:class:`SubmitButton`, :class:`ResetButton` and :class:`ImgButton` below.
@@ -399,7 +399,7 @@
class TextArea(FieldWidget):
- """Simple