Corrected ImageDraw multiline text param documentation [ci skip]

This commit is contained in:
Andrew Murray 2015-07-15 22:43:52 +10:00
parent ee40cb06fa
commit d072ee469c

View File

@ -243,8 +243,7 @@ Methods
Draws the string at the given position.
:param xy: Top left corner of the text.
:param text: Text to be drawn. If it contains any newline characters,
the text is split and passed on to mulitiline_text()
:param text: Text to be drawn.
:param fill: Color to use for the text.
:param font: An :py:class:`~PIL.ImageFont.ImageFont` instance.
:param spacing: The number of pixels between lines.
@ -262,8 +261,7 @@ Methods
Return the size of the given string, in pixels.
:param text: Text to be measured. If it contains any newline characters,
the text is split and passed on to mulitiline_textsize()
:param text: Text to be measured.
:param font: An :py:class:`~PIL.ImageFont.ImageFont` instance.
:param spacing: The number of pixels between lines.