From a0a6112afc08c7471b70ee5e35170dfee3b488f3 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sun, 26 Jan 2014 09:30:10 +0100 Subject: [PATCH] [1.6.x] Fixed typo. Refs #21836. Backport of 8e1fc03 from master --- docs/topics/db/transactions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/db/transactions.txt b/docs/topics/db/transactions.txt index 93c47d3c3f..427bef32f2 100644 --- a/docs/topics/db/transactions.txt +++ b/docs/topics/db/transactions.txt @@ -240,7 +240,7 @@ back. This isn't always convenient for application developers. To alleviate this problem, most databases provide an autocommit mode. When autocommit is turned on and no transaction is active, each SQL query gets wrapped in its own -transaction. In other words, not only does each such query starts a +transaction. In other words, not only does each such query start a transaction, but the transaction also gets automatically committed or rolled back, depending on whether the query succeeded.