From e00a07966e642dd931a0e59f177e242d6dfe99c5 Mon Sep 17 00:00:00 2001 From: Sourajyoti Basak Date: Sat, 12 Feb 2022 07:30:07 +0000 Subject: [PATCH] docs(style): fix typo --- docs/source/style.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/style.rst b/docs/source/style.rst index 5b8c390d..18d4bf16 100644 --- a/docs/source/style.rst +++ b/docs/source/style.rst @@ -20,7 +20,7 @@ You may also use the color's number (an integer between 0 and 255) with the synt console.print("Hello", style="color(5)") -Alteratively you can use a CSS-like syntax to specify a color with a "#" followed by three pairs of hex characters, or in RGB form with three decimal integers. The following two lines both print "Hello" in the same color (purple):: +Alternatively you can use a CSS-like syntax to specify a color with a "#" followed by three pairs of hex characters, or in RGB form with three decimal integers. The following two lines both print "Hello" in the same color (purple):: console.print("Hello", style="#af00ff") console.print("Hello", style="rgb(175,0,255)")