diff --git a/docs/tutorial/printing.md b/docs/tutorial/printing.md index 1a5bd4e176..b234a2e6d9 100644 --- a/docs/tutorial/printing.md +++ b/docs/tutorial/printing.md @@ -232,7 +232,7 @@ You can create colored strings to output to the terminal with `typer.style()`, t /// tip -The parameters `fg` and `bg` receive strings with the color names for the "**f**ore**g**round" and "**b**ack**g**round" colors. You could simply pass `fg="green"` and `bg="red"`. +The parameters `fg` and `bg` receive strings with the color names for the "foreground" and "background" colors. You could simply pass `fg="green"` and `bg="red"`. But **Typer** provides them all as variables like `typer.colors.GREEN` just so you can use autocompletion while selecting them.