From 0ce1084cb6fdd624f17dc1339317eb3963098ec4 Mon Sep 17 00:00:00 2001 From: Siyabonga Dlikilili Date: Sat, 13 Sep 2025 20:31:33 +0200 Subject: [PATCH] Fixed typo in django/core/files/storage/base.py docstring. --- django/core/files/storage/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.