From 87c720f899a76656c43888f24d667641a6a0c767 Mon Sep 17 00:00:00 2001 From: Luux Date: Wed, 24 Nov 2021 11:44:32 +0100 Subject: [PATCH] Fix Example --- docs/faq.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/faq.rst b/docs/faq.rst index e1aa0ab67..c2d6e0dba 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -1421,7 +1421,7 @@ The following is a code snippet which extracts the drawings of a page and re-dra elif item[0] == "re": # rectangle shape.draw_rect(item[1]) elif item[0] == "qu": # quad - shape.draw_rect(item[1]) + shape.draw_quad(item[1]) elif item[0] == "c": # curve shape.draw_bezier(item[1], item[2], item[3], item[4]) else: