diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2024-03-07 08:40:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-07 08:40:24 +0100 |
| commit | 1fffa4af1297c01cb1d116a32173271f4889033c (patch) | |
| tree | 9ae291c0cc417d7f115bfe205d3ba0fe4c35377b | |
| parent | 20848bcf39de891bcf865b47f6f5f550e3f21958 (diff) | |
Fixed typo in django/db/models/expressions.py.
| -rw-r--r-- | django/db/models/expressions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/expressions.py b/django/db/models/expressions.py index c7fe3b638a..198e094385 100644 --- a/django/db/models/expressions.py +++ b/django/db/models/expressions.py @@ -175,7 +175,7 @@ class BaseExpression: _output_field_resolved_to_none = False # Can the expression be used in a WHERE clause? filterable = True - # Can the expression can be used as a source expression in Window? + # Can the expression be used as a source expression in Window? window_compatible = False # Can the expression be used as a database default value? allowed_default = False |
