diff --git a/README.rst b/README.rst index d22739a..041d02d 100644 --- a/README.rst +++ b/README.rst @@ -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.