From d9d0a02d89207f712a40b6dabee708389208e558 Mon Sep 17 00:00:00 2001 From: "Yury V. Zaytsev" Date: Thu, 27 Jul 2023 16:12:38 +0200 Subject: [PATCH] Fix typo in `target-version` param wrongly used in plural (#3817) --- docs/usage_and_configuration/the_basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage_and_configuration/the_basics.md b/docs/usage_and_configuration/the_basics.md index f5862ed..5efb50a 100644 --- a/docs/usage_and_configuration/the_basics.md +++ b/docs/usage_and_configuration/the_basics.md @@ -63,7 +63,7 @@ $ black -t py37 -t py38 -t py39 -t py310 In a [configuration file](#configuration-via-a-file), you can write: ```toml -target-versions = ["py37", "py38", "py39", "py310"] +target-version = ["py37", "py38", "py39", "py310"] ``` _Black_ uses this option to decide what grammar to use to parse your code. In addition, -- 2.39.2