Skip to content

Commit a654b70

Browse files
roskakoriPhotonios
authored andcommitted
Fix typo in indexes docs example
1 parent 666583a commit a654b70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/indexes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Although it can be used on any Django model, it is most useful on views and mate
2525
name = models.CharField(max_length=255)
2626
2727
Model.objects.create(name='henk')
28-
Model.objects.create(name='Henk') # raises IntegrityError
28+
Model.objects.create(name='henk') # raises IntegrityError
2929
3030
3131
.. _conditional_unique_index_page:

0 commit comments

Comments
 (0)