diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-01-03 20:10:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-03 20:10:33 +0100 |
| commit | 97844a3213359b79bfa63eee80aff22dc9a2d1be (patch) | |
| tree | 6a964b1d3ca7401210bd237a9008a5317e6e95ce /django | |
| parent | b5fe97a34ea527d4254b58c2e828450e7c32157f (diff) | |
Fixed typo in django/db/backends/base/features.py.
Diffstat (limited to 'django')
| -rw-r--r-- | django/db/backends/base/features.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/base/features.py b/django/db/backends/base/features.py index 980d7e4d21..30d44c4796 100644 --- a/django/db/backends/base/features.py +++ b/django/db/backends/base/features.py @@ -234,7 +234,7 @@ class BaseDatabaseFeatures: # Does the backend support indexing a TextField? supports_index_on_text_field = True - # Does the backed support window expressions (expression OVER (...))? + # Does the backend support window expressions (expression OVER (...))? supports_over_clause = False # Does the backend support CAST with precision? |
