From 33888a82a7e43020810e35cb81830ec608a89cd4 Mon Sep 17 00:00:00 2001 From: Aaron Belchamber <95648371+abelchambergfs@users.noreply.github.com> Date: Fri, 15 Jul 2022 16:46:59 -0400 Subject: [PATCH] Update Color Text Printer.py Fixed misspelling. Also, thanks for making this, it was helpful for my son learning Python! --- Color Text Printer/Color Text Printer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Color Text Printer/Color Text Printer.py b/Color Text Printer/Color Text Printer.py index a0fe777..6fdb652 100644 --- a/Color Text Printer/Color Text Printer.py +++ b/Color Text Printer/Color Text Printer.py @@ -5,7 +5,7 @@ # This line is make sure that the color style resets once the execution of program is complete colorama.init(autoreset = True) -text = input("Enter a pharse or sentence: ") +text = input("Enter a phrase or sentence: ") # Colorama has limited color options print(Fore.BLACK + Back.WHITE + text)