From dcac10061245bbbe00d574194e9b4aebd67e0ac6 Mon Sep 17 00:00:00 2001 From: Qile Wang Date: Thu, 3 Dec 2015 11:31:41 -0500 Subject: [PATCH] [1.9.x] Fixed typo in docs/ref/models/instances.txt Backport of 83a710b8d3bfb2ac94ba9ae0672bd7b550339629 from master --- docs/ref/models/instances.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/models/instances.txt b/docs/ref/models/instances.txt index 5c5585e05e9..70b98837317 100644 --- a/docs/ref/models/instances.txt +++ b/docs/ref/models/instances.txt @@ -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__`` ----------