diff options
| author | Siyabonga Dlikilili <multimabo@gmail.com> | 2025-09-13 20:31:33 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2025-09-14 20:25:03 +0200 |
| commit | 0ce1084cb6fdd624f17dc1339317eb3963098ec4 (patch) | |
| tree | 531f4abcf373f20df750a7f7c8801e66fd654eb3 | |
| parent | 94680437a45a71c70ca8bd2e68b72aa1e2eff337 (diff) | |
Fixed typo in django/core/files/storage/base.py docstring.
| -rw-r--r-- | django/core/files/storage/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/files/storage/base.py b/django/core/files/storage/base.py index 612c8cc357..025bd881f8 100644 --- a/django/core/files/storage/base.py +++ b/django/core/files/storage/base.py @@ -37,7 +37,7 @@ class Storage: # Ensure that the name is valid, before and after having the storage # system potentially modifying the name. This duplicates the check made # inside `get_available_name` but it's necessary for those cases where - # `get_available_name` is overriden and validation is lost. + # `get_available_name` is overridden and validation is lost. validate_file_name(name, allow_relative_path=True) # Potentially find a different name depending on storage constraints. |
