summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiyabonga Dlikilili <multimabo@gmail.com>2025-09-13 20:31:33 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2025-09-14 20:25:03 +0200
commit0ce1084cb6fdd624f17dc1339317eb3963098ec4 (patch)
tree531f4abcf373f20df750a7f7c8801e66fd654eb3
parent94680437a45a71c70ca8bd2e68b72aa1e2eff337 (diff)
Fixed typo in django/core/files/storage/base.py docstring.
-rw-r--r--django/core/files/storage/base.py2
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.