[Python-checkins] doc: use colon for all color's rangs (GH-28998)

Mariatta webhook-mailer at python.org
Mon Feb 14 14:46:56 EST 2022


https://github.com/python/cpython/commit/6b9f27dd0b5da53b1fd648494879d857572bec80
commit: 6b9f27dd0b5da53b1fd648494879d857572bec80
branch: main
author: Rafael Fontenelle <rffontenelle at users.noreply.github.com>
committer: Mariatta <Mariatta at users.noreply.github.com>
date: 2022-02-14T11:46:40-08:00
summary:

doc: use colon for all color's rangs (GH-28998)

files:
M Doc/library/tkinter.rst

diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst
index a48bc13c8b436..65395d824cab7 100644
--- a/Doc/library/tkinter.rst
+++ b/Doc/library/tkinter.rst
@@ -756,8 +756,8 @@ callback
 
 color
    Colors can be given as the names of X colors in the rgb.txt file, or as strings
-   representing RGB values in 4 bit: ``"#RGB"``, 8 bit: ``"#RRGGBB"``, 12 bit"
-   ``"#RRRGGGBBB"``, or 16 bit ``"#RRRRGGGGBBBB"`` ranges, where R,G,B here
+   representing RGB values in 4 bit: ``"#RGB"``, 8 bit: ``"#RRGGBB"``, 12 bit:
+   ``"#RRRGGGBBB"``, or 16 bit: ``"#RRRRGGGGBBBB"`` ranges, where R,G,B here
    represent any legal hex digit.  See page 160 of Ousterhout's book for details.
 
 cursor



More information about the Python-checkins mailing list