Author: simon Date: 2008-09-03 10:35:58 -0500 (Wed, 03 Sep 2008) New Revision: 8927
Modified: django/trunk/docs/ref/models/fields.txt Log: Fixed #8838 - two typos in model field docs. Thanks, arien Modified: django/trunk/docs/ref/models/fields.txt =================================================================== --- django/trunk/docs/ref/models/fields.txt 2008-09-03 15:24:29 UTC (rev 8926) +++ django/trunk/docs/ref/models/fields.txt 2008-09-03 15:35:58 UTC (rev 8927) @@ -585,7 +585,7 @@ ``ImageField`` -------------- -.. class:: ImageField(upload_to-None, [height_field=None, width_field=None, max_length=100, **options]) +.. class:: ImageField(upload_to=None, [height_field=None, width_field=None, max_length=100, **options]) Like :class:`FileField`, but validates that the uploaded object is a valid image. Has two extra optional arguments: @@ -650,7 +650,7 @@ ``PositiveSmallIntegerField`` ----------------------------- -.. class:: PositiveIntegerField([**options]) +.. class:: PositiveSmallIntegerField([**options]) Like a :class:`PositiveIntegerField`, but only allows values under a certain (database-dependent) point. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---
