From 05098fa4494e66e1d3750d7f4821f7b3114693b9 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 1 May 2017 20:45:33 -0400 Subject: [PATCH] Fixed typo in django/db/backends/base/schema.py comment. --- django/db/backends/base/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/backends/base/schema.py b/django/db/backends/base/schema.py index f688fd4672..b1426dc920 100644 --- a/django/db/backends/base/schema.py +++ b/django/db/backends/base/schema.py @@ -547,7 +547,7 @@ class BaseDatabaseSchemaEditor: index_names = self._constraint_names(model, [old_field.column], index=True, type_=Index.suffix) for index_name in index_names: if index_name in meta_index_names: - # There only way to check if an index was created with + # The only way to check if an index was created with # db_index=True or with Index(['field'], name='foo') # is to look at its name (refs #28053). continue