From f75f83beb0ae5b22db9c0fc0a9a4ae54f69628a8 Mon Sep 17 00:00:00 2001 From: Steve Johnson Date: Sun, 6 Oct 2013 20:36:31 -0700 Subject: [PATCH] Fix minor typo --- docs/handbook/tutorial.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/handbook/tutorial.rst b/docs/handbook/tutorial.rst index 1389910dc..88bff797f 100644 --- a/docs/handbook/tutorial.rst +++ b/docs/handbook/tutorial.rst @@ -15,8 +15,8 @@ in the :py:mod:`~PIL.Image` module:: >>> from PIL import Image >>> im = Image.open("lena.ppm") -If successful, this function returns an :py:class:`PIL.Image.Image` object. You -can now use instance attributes to examine the file contents:: +If successful, this function returns an :py:class:`~PIL.Image.Image` object. +You can now use instance attributes to examine the file contents:: >>> print im.format, im.size, im.mode PPM (512, 512) RGB