From 50419258122c94b044948211ffd0bcac65a2c77e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20N=C3=BC=C3=9Flein?= Date: Thu, 21 Sep 2023 16:19:16 +0100 Subject: [PATCH] fix typo --- docs/advanced_topics/images/renditions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced_topics/images/renditions.md b/docs/advanced_topics/images/renditions.md index c13b2a19f3..2bd110d3b0 100644 --- a/docs/advanced_topics/images/renditions.md +++ b/docs/advanced_topics/images/renditions.md @@ -82,7 +82,7 @@ def get_images_uploaded_by_user(user): The above can be modified slightly to prefetch the renditions of the images returned: ```python -def get_images_uploaded_by_user(user):: +def get_images_uploaded_by_user(user): return ImageModel.objects.filter(uploaded_by_user=user).prefetch_renditions() ```