summaryrefslogtreecommitdiffstats
path: root/user_guide_src
diff options
context:
space:
mode:
authorRafael Schwemmer <rafael.schwemmer@gmail.com>2015-02-05 15:30:13 +0100
committerRafael Schwemmer <rafael.schwemmer@gmail.com>2015-02-05 15:30:13 +0100
commitb4b9bd3fc5bed95c19cd394d9fbf29772e94614a (patch)
tree854a1fd4327b9e6e5d66c2951bf781d19f8c3f4c /user_guide_src
parent514896e1b0df12bc82dac785fa7c9ed4f62585e6 (diff)
Update transactions.rst
Corrected a grammatical error in "CodeIgniter's Approach to Transactions"
Diffstat (limited to 'user_guide_src')
-rw-r--r--user_guide_src/source/database/transactions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide_src/source/database/transactions.rst b/user_guide_src/source/database/transactions.rst
index e9190e59a..2e6d4b477 100644
--- a/user_guide_src/source/database/transactions.rst
+++ b/user_guide_src/source/database/transactions.rst
@@ -21,7 +21,7 @@ approach because it greatly simplifies the process of running
transactions. In most cases all that is required are two lines of code.
Traditionally, transactions have required a fair amount of work to
-implement since they demand that you to keep track of your queries and
+implement since they demand that you keep track of your queries and
determine whether to commit or rollback based on the success or failure
of your queries. This is particularly cumbersome with nested queries. In
contrast, we've implemented a smart transaction system that does all