From db59ba03e95bcbed243f55ce851a36615ca0e8cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Nyffenegger?= Date: Fri, 1 Sep 2017 00:00:16 +0200 Subject: [PATCH] Fix typo --- README | 2 +- lib/DBD/SQLite.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index c1577c2..9047989 100644 --- a/README +++ b/README @@ -247,7 +247,7 @@ NOTABLE DIFFERENCES FROM OTHER DRIVERS yet) but you're not allowed to call "begin_work" method (if you don't issue a "BEGIN", it will be issued internally). You can commit or roll it back freely. Another transaction will automatically - begins if you execute another statement. + begin if you execute another statement. $dbh->{AutoCommit} = 0; diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 854a287..e7ce489 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -1364,7 +1364,7 @@ a C statement (only when an actual transaction has not begun yet) but you're not allowed to call C method (if you don't issue a C, it will be issued internally). You can commit or roll it back freely. Another transaction will -automatically begins if you execute another statement. +automatically begin if you execute another statement. $dbh->{AutoCommit} = 0;