From 5c378989497a4073ab2d4435e81beb1a6f8b5e46 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Fri, 1 May 2020 14:39:09 -0300 Subject: [PATCH] Fix some typos in the CHANGELOG --- doc/en/changelog.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/en/changelog.rst b/doc/en/changelog.rst index ac3b4ad85..00ed54975 100644 --- a/doc/en/changelog.rst +++ b/doc/en/changelog.rst @@ -91,12 +91,12 @@ Deprecations - `#5975 `_: Deprecate using direct constructors for ``Nodes``. - Instead they are new constructed via ``Node.from_parent``. + Instead they are now constructed via ``Node.from_parent``. - This transitional mechanism enables us to detangle the very intensely - entangled ``Node`` relationships by enforcing more controlled creation/configruation patterns. + This transitional mechanism enables us to untangle the very intensely + entangled ``Node`` relationships by enforcing more controlled creation/configuration patterns. - As part of that session/config are already disallowed parameters and as we work on the details we might need disallow a few more as well. + As part of this change, session/config are already disallowed parameters and as we work on the details we might need disallow a few more as well. Subclasses are expected to use `super().from_parent` if they intend to expand the creation of `Nodes`.