From 68504305d0919c76eb9030abf7844ef21b043483 Mon Sep 17 00:00:00 2001 From: Mikhail Korobov Date: Wed, 7 Jan 2015 04:17:22 +0500 Subject: [PATCH] DOC fix a Sphinx warning :keyword: is for function arguments, not for Python keywords. And True is not even a Python keyword. --- docs/reference/ImagePath.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/ImagePath.rst b/docs/reference/ImagePath.rst index 700464144..03aa39811 100644 --- a/docs/reference/ImagePath.rst +++ b/docs/reference/ImagePath.rst @@ -53,7 +53,7 @@ vector data. Path objects can be passed to the methods on the Converts the path to a Python list [(x, y), …]. :param flat: By default, this function returns a list of 2-tuples - [(x, y), ...]. If this argument is :keyword:`True`, it + [(x, y), ...]. If this argument is `True`, it returns a flat list [x, y, ...] instead. :return: A list of coordinates. See **flat**.