From dfa6655bdd511cda37e568aece8b185cfc5c2d6d Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 16 Jul 2022 19:04:42 +1000 Subject: [PATCH] docs: fix simple typo, unpredicatable -> unpredictable There is a small typo in src/PIL/Image.py. Should read `unpredictable` rather than `unpredicatable`. Signed-off-by: Tim Gates --- src/PIL/Image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PIL/Image.py b/src/PIL/Image.py index ce32c39ced6..6abb1249166 100644 --- a/src/PIL/Image.py +++ b/src/PIL/Image.py @@ -646,7 +646,7 @@ def __repr__(self): def _repr_pretty_(self, p, cycle): """IPython plain text display support""" - # Same as __repr__ but without unpredicatable id(self), + # Same as __repr__ but without unpredictable id(self), # to keep Jupyter notebook `text/plain` output stable. p.text( "<%s.%s image mode=%s size=%dx%d>"