DOC fix a Sphinx warning

:keyword: is for function arguments, not for Python keywords.
And True is not even a Python keyword.
This commit is contained in:
Mikhail Korobov 2015-01-07 04:17:22 +05:00
parent 52cbd123a2
commit 68504305d0

View File

@ -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**.