1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed some typos in the documentation.

Thanks to Rodolfo Carvalho and Piotr Kasprzyk
for the patch.
This commit is contained in:
Baptiste Mispelon
2014-03-02 17:05:57 +01:00
parent a08f906556
commit ea4da8e63c
10 changed files with 10 additions and 10 deletions

View File

@@ -185,7 +185,7 @@ code snippet shows how you can implement this check::
self.min > self.max):
return [
checks.Error(
'min greated than max.',
'min greater than max.',
hint='Decrease min or increase max.',
obj=self,
id='myapp.E001',