@@ -9,7 +9,7 @@ Responsive cross-browser image library using modern codes like AVIF & WebP.
99- serve files with or without a CDN
1010- placeholders for local development
1111- migration support
12- - async image processing for via [ Django Tasks] [ django-tasks ]
12+ - async image processing via [ Django Tasks] [ django-tasks ]
1313- [ DRF] support
1414
1515[ ![ PyPi Version] ( https://img.shields.io/pypi/v/django-pictures.svg )] ( https://pypi.python.org/pypi/django-pictures/ )
@@ -109,9 +109,9 @@ If you have either Dramatiq or Celery installed, we will default to async
109109image processing. You will need workers to listen to the ` pictures ` queue.
110110
111111> [ !IMPORTANT]
112- > Starting with Django version 6.0, this package leverage Django's built-in
112+ > Starting with Django version 6.0, this package leverages Django's built-in
113113> task framework for async image processing by default. You will need to add
114- > add the ` pictures ` queue to your ` TASKS ` setting:
114+ > the ` pictures ` queue to your ` TASKS ` setting:
115115
116116``` python
117117# settings.py
@@ -238,11 +238,11 @@ densities.
238238### Async image processing
239239
240240> [ !IMPORTANT]
241- > Starting with Django version 6.0, this package leverage Django's built-in
241+ > Starting with Django version 6.0, this package leverages Django's built-in
242242> task framework for async image processing by default. You can explicitly
243243> override this behavior via the ` PICTURES["PROCESSOR"] ` setting.
244244
245- Images are processed on a separate queue by default, you will add the ` pictures `
245+ Images are processed on a separate queue by default, you will need to add the ` pictures `
246246queue to your task backend configuration. You can override the queue name,
247247via the ` PICTURES["QUEUE_NAME"] ` setting.
248248
0 commit comments