diff options
| author | seungkwon <yevgnenll@gmail.com> | 2016-01-23 20:51:37 +0900 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-01-23 07:05:47 -0500 |
| commit | 5925e20c377a0524ef2cc7d11a16f34a67c9398d (patch) | |
| tree | 8f157cabdcbc8ed3712d0a6193ad803dc0fe6025 | |
| parent | e72a495031139a57eeeecfed217d786a3033da0d (diff) | |
Fixed typo in django/db/backends/sqlite3/operations.py.
| -rw-r--r-- | django/db/backends/sqlite3/operations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/sqlite3/operations.py b/django/db/backends/sqlite3/operations.py index 1a4f4baa6c..2af08469fb 100644 --- a/django/db/backends/sqlite3/operations.py +++ b/django/db/backends/sqlite3/operations.py @@ -108,7 +108,7 @@ class DatabaseOperations(BaseDatabaseOperations): Only for last_executed_query! Don't use this to execute SQL queries! """ # This function is limited both by SQLITE_LIMIT_VARIABLE_NUMBER (the - # number of paramters, default = 999) and SQLITE_MAX_COLUMN (the + # number of parameters, default = 999) and SQLITE_MAX_COLUMN (the # number of return values, default = 2000). Since Python's sqlite3 # module doesn't expose the get_limit() C API, assume the default # limits are in effect and split the work in batches if needed. |
