summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorElazrod56 <thomas.lf5629@gmail.com>2023-04-19 23:20:58 +0200
committerDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2023-04-20 07:41:43 +0200
commit4cdf9222ae7ed5a3122f633d04b8d8c144e60c1c (patch)
tree273cc29f9d806387c19dbdbdbbb6b896e32096e8 /doc
parent7f93962cf4dd5a541734f4597f8f1a24d19ece78 (diff)
downloadpylint-git-4cdf9222ae7ed5a3122f633d04b8d8c144e60c1c.tar.gz
Modified all occurences of "a f-string" to "an f-string"
Diffstat (limited to 'doc')
-rw-r--r--doc/user_guide/checkers/features.rst6
-rw-r--r--doc/whatsnew/2/2.12/full.rst2
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/user_guide/checkers/features.rst b/doc/user_guide/checkers/features.rst
index 9a7c8a4ff..a6b08381a 100644
--- a/doc/user_guide/checkers/features.rst
+++ b/doc/user_guide/checkers/features.rst
@@ -916,9 +916,9 @@ Refactoring checker Messages
comparison inside a condition to determine if a sequence is empty. Instead of
coercing the length to a boolean, either rely on the fact that empty
sequences are false or compare the length against a scalar.
-:consider-using-f-string (C0209): *Formatting a regular string which could be a f-string*
+:consider-using-f-string (C0209): *Formatting a regular string which could be an f-string*
Used when we detect a string that is being formatted with format() or % which
- could potentially be a f-string. The use of f-strings is preferred. Requires
+ could potentially be an f-string. The use of f-strings is preferred. Requires
Python 3.6 and ``py-version >= 3.6``.
:use-maxsplit-arg (C0207): *Use %s instead*
Emitted when accessing only the first or last element of str.split(). The
@@ -1308,7 +1308,7 @@ Unsupported Version checker Messages
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
:using-f-string-in-unsupported-version (W2601): *F-strings are not supported by all versions included in the py-version setting*
Used when the py-version set by the user is lower than 3.6 and pylint
- encounters a f-string.
+ encounters an f-string.
:using-final-decorator-in-unsupported-version (W2602): *typing.final is not supported by all versions included in the py-version setting*
Used when the py-version set by the user is lower than 3.8 and pylint
encounters a ``typing.final`` decorator.
diff --git a/doc/whatsnew/2/2.12/full.rst b/doc/whatsnew/2/2.12/full.rst
index 923dd9a25..d3f7d0922 100644
--- a/doc/whatsnew/2/2.12/full.rst
+++ b/doc/whatsnew/2/2.12/full.rst
@@ -83,7 +83,7 @@ Release date: 2021-11-24
and allows it to be checked against actual output in a test.
* Fix a crash in the ``check_elif`` extensions where an undetected if in a comprehension
- with an if statement within a f-string resulted in an out of range error. The checker no
+ with an if statement within an f-string resulted in an out of range error. The checker no
longer relies on counting if statements anymore and uses known if statements locations instead.
It should not crash on badly parsed if statements anymore.