1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed typos in comments and docs.

This commit is contained in:
Min ho Kim
2019-07-02 17:36:17 +10:00
committed by Mariusz Felisiak
parent 090ca6512f
commit fbb83fefd4
7 changed files with 7 additions and 7 deletions

View File

@@ -397,7 +397,7 @@ class BaseDatabaseWrapper:
The usual way to start a transaction is to turn autocommit off.
SQLite does not properly start a transaction when disabling
autocommit. To avoid this buggy behavior and to actually enter a new
transaction, an explcit BEGIN is required. Using
transaction, an explicit BEGIN is required. Using
force_begin_transaction_with_broken_autocommit=True will issue an
explicit BEGIN with SQLite. This option will be ignored for other
backends.