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)