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 <tim.gates@iress.com>
This commit is contained in:
Tim Gates 2022-07-16 19:04:42 +10:00
parent 45963b1b40
commit dfa6655bdd
No known key found for this signature in database
GPG Key ID: AE3BE0D53823CF05

View File

@ -646,7 +646,7 @@ class Image:
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>"