diff options
| author | Rodolfo Carvalho <rhcarvalho@gmail.com> | 2014-03-02 15:25:53 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-03-03 07:38:09 -0500 |
| commit | 0d912258921a442c48d5787228db2db5af7e8fa5 (patch) | |
| tree | f6826425de5bca2498c46e5242b870282a34eda2 /tests/field_subclassing/fields.py | |
| parent | 6acaa5238668593d6d854b28dbfa65e95796585c (diff) | |
Fixed many typos in comments and docstrings.
Thanks Piotr Kasprzyk for help with the patch.
Diffstat (limited to 'tests/field_subclassing/fields.py')
| -rw-r--r-- | tests/field_subclassing/fields.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/field_subclassing/fields.py b/tests/field_subclassing/fields.py index e9c7a982e8..43ece22e82 100644 --- a/tests/field_subclassing/fields.py +++ b/tests/field_subclassing/fields.py @@ -59,7 +59,7 @@ class SmallerField(SmallField): class JSONField(six.with_metaclass(models.SubfieldBase, models.TextField)): - description = ("JSONField automatically serializes and desializes values to " + description = ("JSONField automatically serializes and deserializes values to " "and from JSON.") def to_python(self, value): |
