From fc3c4c011942ded46947bebd7dedb89317f45788 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Wed, 14 Feb 2018 20:09:00 +1100 Subject: [PATCH] Corrected reference to method --- docs/reference/ImageColor.rst | 2 +- docs/reference/ImageDraw.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/ImageColor.rst b/docs/reference/ImageColor.rst index f4bd9bd0e..f3e6a6f90 100644 --- a/docs/reference/ImageColor.rst +++ b/docs/reference/ImageColor.rst @@ -6,7 +6,7 @@ The :py:mod:`ImageColor` module contains color tables and converters from CSS3-style color specifiers to RGB tuples. This module is used by -:py:meth:`PIL.Image.Image.new` and the :py:mod:`~PIL.ImageDraw` module, among +:py:meth:`PIL.Image.new` and the :py:mod:`~PIL.ImageDraw` module, among others. .. _color-names: diff --git a/docs/reference/ImageDraw.rst b/docs/reference/ImageDraw.rst index 7e4987971..de26a4d85 100644 --- a/docs/reference/ImageDraw.rst +++ b/docs/reference/ImageDraw.rst @@ -44,7 +44,7 @@ Colors ^^^^^^ To specify colors, you can use numbers or tuples just as you would use with -:py:meth:`PIL.Image.Image.new` or :py:meth:`PIL.Image.Image.putpixel`. For “1”, +:py:meth:`PIL.Image.new` or :py:meth:`PIL.Image.Image.putpixel`. For “1”, “L”, and “I” images, use integers. For “RGB” images, use a 3-tuple containing integer values. For “F” images, use integer or floating point values.