summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2012-07-25 13:06:58 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2012-07-25 13:06:58 -0700
commit98c7ad444c064bd9540eed60609869d770489d07 (patch)
tree40ebc212e3bc3709c92a7e248e47b04342f9b9d3
parentc4be14bd32537ced70ff86c1059e6cbfbae7f152 (diff)
parentc7ac44e64ba0862e77753bf4859102bb1dbfe883 (diff)
Merge pull request #228 from nklas/master
Documentation: Fixed a typo in docs/releases/1.4.txt
-rw-r--r--docs/releases/1.4.txt2
-rw-r--r--docs/topics/signals.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/releases/1.4.txt b/docs/releases/1.4.txt
index a091869645..01532cc04c 100644
--- a/docs/releases/1.4.txt
+++ b/docs/releases/1.4.txt
@@ -37,7 +37,7 @@ Other notable new features in Django 1.4 include:
the ability to `bulk insert <#model-objects-bulk-create-in-the-orm>`_
large datasets for improved performance, and
`QuerySet.prefetch_related`_, a method to batch-load related objects
- in areas where :meth:`~django.db.models.QuerySet.select_related` does't
+ in areas where :meth:`~django.db.models.QuerySet.select_related` doesn't
work.
* Some nice security additions, including `improved password hashing`_
diff --git a/docs/topics/signals.txt b/docs/topics/signals.txt
index fa668cc8c7..db1bcb03df 100644
--- a/docs/topics/signals.txt
+++ b/docs/topics/signals.txt
@@ -235,7 +235,7 @@ Remember that you're allowed to change this list of arguments at any time, so ge
Sending signals
---------------
-There are two ways to send send signals in Django.
+There are two ways to send signals in Django.
.. method:: Signal.send(sender, **kwargs)
.. method:: Signal.send_robust(sender, **kwargs)