From 8264aa81d92477b8338616b37165e41ee57accf0 Mon Sep 17 00:00:00 2001 From: Andrew Murray <3112309+radarhere@users.noreply.github.com> Date: Sat, 11 Sep 2021 19:48:43 +1000 Subject: [PATCH] Updated capitalisation Co-authored-by: Hugo van Kemenade --- src/PIL/TiffImagePlugin.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/PIL/TiffImagePlugin.py b/src/PIL/TiffImagePlugin.py index bd760d35f..eb33e3218 100644 --- a/src/PIL/TiffImagePlugin.py +++ b/src/PIL/TiffImagePlugin.py @@ -439,27 +439,27 @@ class ImageFileDirectory_v2(MutableMapping): * ``self.tagtype = {}`` - * Key: numerical tiff tag number + * Key: numerical TIFF tag number * Value: integer corresponding to the data type from :py:data:`.TiffTags.TYPES` .. versionadded:: 3.0.0 - 'internal' data structures: + 'Internal' data structures: * ``self._tags_v2 = {}`` - * Key: numerical tiff tag number + * Key: numerical TIFF tag number * Value: decoded data, as tuple for multiple values * ``self._tagdata = {}`` - * Key: numerical tiff tag number + * Key: numerical TIFF tag number * Value: undecoded byte string from file * ``self._tags_v1 = {}`` - * Key: numerical tiff tag number + * Key: numerical TIFF tag number * Value: decoded data in the v1 format Tags will be found in the private attributes ``self._tagdata``, and in