summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2014-01-26 09:30:10 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2014-01-26 09:30:27 +0100
commita0a6112afc08c7471b70ee5e35170dfee3b488f3 (patch)
treeaa266c0b20b09f19c498bd61641528683c8ce8c6
parenta21fc1c08667dc319601b8195d0a7d3a4b8f2af5 (diff)
[1.6.x] Fixed typo. Refs #21836.
Backport of 8e1fc03 from master
-rw-r--r--docs/topics/db/transactions.txt2
1 files changed, 1 insertions, 1 deletions
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.