From e6dc5ef0f8c2d28bc9d2ffa226fbb5e4e58d88f3 Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Tue, 25 Jan 2022 13:36:29 +0100 Subject: [PATCH] Fix some typoes in the Changelog --- ChangeLog | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 877099935d..8910b33959 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