diff options
author | Wulian <1055917385@qq.com> | 2024-08-21 12:49:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-21 12:49:23 (GMT) |
commit | 94036e43a83e8993f6ff42408759091b7c60d17d (patch) | |
tree | 8c5c47b07feeebb68ab878c1ae94f3f7168ebd81 /Lib/tkinter | |
parent | 7b26c4d1e3a856b9a377c57cffc3e7b3921d18bb (diff) | |
download | cpython-94036e43a83e8993f6ff42408759091b7c60d17d.zip cpython-94036e43a83e8993f6ff42408759091b7c60d17d.tar.gz cpython-94036e43a83e8993f6ff42408759091b7c60d17d.tar.bz2 |
Fix typos in comments (#123201)
Diffstat (limited to 'Lib/tkinter')
-rw-r--r-- | Lib/tkinter/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py index 5352276..2e5affb 100644 --- a/Lib/tkinter/__init__.py +++ b/Lib/tkinter/__init__.py @@ -4490,7 +4490,7 @@ class PhotoImage(Image): The FORMAT option specifies the name of the image file format handler to be used. If this option is not given, this method uses a format that consists of a tuple (one element per row) of strings - containings space separated (one element per pixel/column) colors + containing space-separated (one element per pixel/column) colors in “#RRGGBB” format (where RR is a pair of hexadecimal digits for the red channel, GG for green, and BB for blue). |