From f39b5192c022ba5261550a3c6c86d239bdb91117 Mon Sep 17 00:00:00 2001 From: Nils K <24257556+septatrix@users.noreply.github.com> Date: Tue, 3 Aug 2021 14:32:00 +0200 Subject: [PATCH] Fix usage of ASCII where it should be ANSI --- docs/tutorial/printing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/printing.md b/docs/tutorial/printing.md index 0ff754ffe..8c174e958 100644 --- a/docs/tutorial/printing.md +++ b/docs/tutorial/printing.md @@ -31,7 +31,7 @@ Hello World And make sure you use `typer.echo()` instead of `print()`. !!! note "Technical Details" - The way color works in terminals is by using some codes (ASCII codes) as part of the text. + The way color works in terminals is by using some codes (ANSI escape sequences) as part of the text. So, a colored text is still just a `str`.