Fix docs typo; closes #147

This commit is contained in:
Matthew Tretter 2012-08-28 10:25:12 -04:00
parent 50cf317509
commit e136957fc0

View file

@ -64,7 +64,7 @@ you can use a ``ProcessedImageField``:
from imagekit.models.fields import ProcessedImageField
class Photo(models.Model):
processed_image = ImageSpecField(format='JPEG', options={'quality': 90})
processed_image = ProcessedImageField(format='JPEG', options={'quality': 90})
See the class documentation for details.