1
0
mirror of https://github.com/django/django.git synced 2025-07-19 17:19:12 +00:00

[1.9.x] Fixed typo in docs/ref/models/instances.txt

Backport of 83a710b8d3bfb2ac94ba9ae0672bd7b550339629 from master
This commit is contained in:
Qile Wang 2015-12-03 11:31:41 -05:00 committed by Tim Graham
parent 8897f4b0df
commit dcac100612

View File

@ -621,7 +621,7 @@ For example::
return '%s %s' % (self.first_name, self.last_name)
If you'd like compatibility with Python 2, you can decorate your model class
with :func:`~django.utils.encoding.python_2_unicode_compatible` as show above.
with :func:`~django.utils.encoding.python_2_unicode_compatible` as shown above.
``__eq__``
----------