summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarkus Holtermann <info@markusholtermann.eu>2015-01-27 19:42:48 +0100
committerMarkus Holtermann <info@markusholtermann.eu>2015-01-27 19:45:52 +0100
commit335df82a3f13877220712090eb455a32eea87421 (patch)
tree9eab4c5ad39e9ccbcdbb4af56919742ca470abe3 /docs
parent6f8418089c5e81d12718187da2140394ed30da43 (diff)
Corrected naming of method and attribute
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/releases/1.8.txt b/docs/releases/1.8.txt
index 71a2a430e3..4ee959a698 100644
--- a/docs/releases/1.8.txt
+++ b/docs/releases/1.8.txt
@@ -468,9 +468,9 @@ Migrations
* A :ref:`generic mechanism to handle the deprecation of model fields
<migrations-removing-model-fields>` was added.
-* The :attr:`RunPython.noop <django.db.migrations.operations.RunPython.noop>`
- and :meth:`RunSQL.noop() <django.db.migrations.operations.RunSQL.noop>` class
- attribute/method were added to ease in making ``RunPython`` and ``RunSQL``
+* The :meth:`RunPython.noop() <django.db.migrations.operations.RunPython.noop>`
+ and :attr:`RunSQL.noop <django.db.migrations.operations.RunSQL.noop>` class
+ method/attribute were added to ease in making ``RunPython`` and ``RunSQL``
operations reversible.
* The :class:`~django.db.migrations.operations.RunPython` and