summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-08-25 20:19:35 -0400
committerTim Graham <timograham@gmail.com>2015-08-25 20:24:05 -0400
commit58335a2c0b2a1af4783c712e9a532385e04f554c (patch)
treef181782bbb3ce143a8aeb29ea3b9190ff9e8c747 /docs
parent0723a39a59a7542a6dfa8bc232a26d9a2b8ea38c (diff)
[1.8.x] Fixed #25311 -- Removed vague language about "partial commits" from docs.
Backport of ea47a052ba7a097a98993c240ecea96a115f6c25 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/transactions.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/db/transactions.txt b/docs/topics/db/transactions.txt
index 6b54510a47..0e3c94f0c9 100644
--- a/docs/topics/db/transactions.txt
+++ b/docs/topics/db/transactions.txt
@@ -39,9 +39,9 @@ transaction. If the response is produced without problems, Django commits the
transaction. If the view produces an exception, Django rolls back the
transaction.
-You may perform partial commits and rollbacks in your view code, typically with
-the :func:`atomic` context manager. However, at the end of the view, either
-all the changes will be committed, or none of them.
+You may perform subtransactions using savepoints in your view code, typically
+with the :func:`atomic` context manager. However, at the end of the view,
+either all or none of the changes will be committed.
.. warning::