1
0
mirror of https://github.com/django/django.git synced 2025-10-26 23:26:08 +00:00

Fixed #16584 -- Fixed a bunch of typos in code comments. Thanks, Bernhard Essl.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16598 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jannis Leidel
2011-08-12 14:14:15 +00:00
parent 4a993fab18
commit bce890ace4
28 changed files with 35 additions and 35 deletions

View File

@@ -140,7 +140,7 @@ class Command(NoArgsCommand):
if verbosity >= 1:
print "Installing indexes ..."
# Install SQL indicies for all newly created models
# Install SQL indices for all newly created models
for app_name, model_list in manifest.items():
for model in model_list:
if model in created_models: