From: Yury V. Zaytsev Date: Thu, 27 Jul 2023 14:12:38 +0000 (+0200) Subject: Fix typo in `target-version` param wrongly used in plural (#3817) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/d9d0a02d89207f712a40b6dabee708389208e558 Fix typo in `target-version` param wrongly used in plural (#3817) --- 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,