From e56521f7ddd3fb0b49b9de66f8e51bb025b8c1a8 Mon Sep 17 00:00:00 2001 From: Nils K <24257556+septatrix@users.noreply.github.com> Date: Mon, 4 Jul 2022 11:20:17 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=20Fix=20typo,=20"ASCII=20codes"=20to?= =?UTF-8?q?=20"ANSI=20escape=20sequences"=20(#308)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sebastián Ramírez --- 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 407408c..f5cdc84 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`.