summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2019-01-03 20:10:33 +0100
committerGitHub <noreply@github.com>2019-01-03 20:10:33 +0100
commit97844a3213359b79bfa63eee80aff22dc9a2d1be (patch)
tree6a964b1d3ca7401210bd237a9008a5317e6e95ce
parentb5fe97a34ea527d4254b58c2e828450e7c32157f (diff)
Fixed typo in django/db/backends/base/features.py.
-rw-r--r--django/db/backends/base/features.py2
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?