summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-01-25 13:36:29 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2022-02-27 22:40:17 +0100
commite6dc5ef0f8c2d28bc9d2ffa226fbb5e4e58d88f3 (patch)
tree4da82927d5ddb10b89d2e433d67adb8ac2d58ca6 /ChangeLog
parentb6d17107f2e02df4ce5080536bb783a25273b33f (diff)
downloadastroid-git-e6dc5ef0f8c2d28bc9d2ffa226fbb5e4e58d88f3.tar.gz
Fix some typoes in the Changelog
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog16
1 files changed, 8 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 87709993..8910b339 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,7 +12,7 @@ Release date: TBA
Closes PyCQA/pylint#4826
-* Fixed builtin inferenence on `property` calls not calling the `postinit` of the new node, which
+* Fixed builtin inference on `property` calls not calling the `postinit` of the new node, which
resulted in instance arguments missing on these nodes.
* Fixed a crash on ``Super.getattr`` when the attribute was previously uninferable due to a cache
@@ -128,7 +128,7 @@ Release date: 2021-12-31
* Fix typing and update explanation for ``Arguments.args`` being ``None``.
-* Fix crash if a variable named ``type`` is subscripted in a generator expression.
+* Fix crash if a variable named ``type`` is subscribed in a generator expression.
Closes PyCQA/pylint#5461
@@ -409,11 +409,11 @@ Release date: 2021-08-03
* Added support to infer return type of ``typing.cast()``
-* Fix variable lookup's handling of exclusive statements
+* Fix variable lookup handling of exclusive statements
Closes PyCQA/pylint#3711
-* Fix variable lookup's handling of function parameters
+* Fix variable lookup handling of function parameters
Closes PyCQA/astroid#180
@@ -453,7 +453,7 @@ Release date: 2021-07-19
* Added ``If.is_sys_guard`` and ``If.is_typing_guard`` helper methods
-* Fix a bad inferenece type for yield values inside of a derived class.
+* Fix a bad inference type for yield values inside of a derived class.
Closes PyCQA/astroid#1090
@@ -1488,7 +1488,7 @@ Release date: 2018-07-15
* Fix missing __module__ and __qualname__ from class definition locals
- Close PYCQA/pylint#1753
+ Close PyCQA/pylint#1753
* Fix a crash when __annotations__ access a parent's __init__ that does not have arguments
@@ -1575,7 +1575,7 @@ Release date: 2017-12-15
* Add brain tip for attrs library to prevent unsupported-assignment-operation false positives
- Close PYCQA/pylint#1698
+ Close PyCQA/pylint#1698
* file_stream was removed, since it was deprecated for three releases
@@ -1993,7 +1993,7 @@ Release date: 2015-11-29
* Add basic support for understanding context managers.
Currently, there's no way to understand whatever __enter__ returns in a
- context manager and what it is binded using the ``as`` keyword. With these changes,
+ context manager and what it is bound using the ``as`` keyword. With these changes,
we can understand ``bar`` in ``with foo() as bar``, which will be the result of __enter__.
* Add a new type of node, called *inference objects*. Inference objects are similar with