From 57e3af4afbdfa37496a479409a0a0b9ca46f991c Mon Sep 17 00:00:00 2001 From: Hugo Date: Fri, 28 Jun 2019 18:47:17 +0300 Subject: [PATCH] Fix typo --- docs/reference/Image.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/Image.rst b/docs/reference/Image.rst index 944a7e88e..81abe17b8 100644 --- a/docs/reference/Image.rst +++ b/docs/reference/Image.rst @@ -173,7 +173,7 @@ This helps to get the bounding box coordinates of the input image: from PIL import Image im = Image.open("hopper.jpg") - prin (im.getbbox()) + print(im.getbbox()) # Returns four coordinates in the format (left, upper, right, lower) .. automethod:: PIL.Image.Image.getcolors