From 4eca7c83955e972bf79b299adeac912cfd966684 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Corbin?= Date: Mon, 24 Mar 2025 10:01:52 +0100 Subject: [PATCH] Fix typo in preview blocks documentation --- docs/topics/streamfield.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/topics/streamfield.md b/docs/topics/streamfield.md index ae9f63bcc5..3eeb82c8f2 100644 --- a/docs/topics/streamfield.md +++ b/docs/topics/streamfield.md @@ -534,9 +534,9 @@ You can do so by [passing the keyword arguments](block_preview_arguments) `previ ("text", blocks.TextBlock()), ("source", blocks.CharBlock()), ], - preview_value={"text": "This is the coolest CMS ever.", "source": "Willie Wagtail"} + preview_value={"text": "This is the coolest CMS ever.", "source": "Willie Wagtail"}, preview_template="myapp/previews/blocks/quote.html", - description="A quote with attribution to the source, rendered as a blockquote." + description="A quote with attribution to the source, rendered as a blockquote.", )) ```