浏览代码

Fixed #25311 -- Removed vague language about "partial commits" from docs.

Tim Graham 9 年之前
父节点
当前提交
ea47a052ba
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      docs/topics/db/transactions.txt

+ 3 - 3
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::