From a7518eb631b7f90d621bdd4c4ba761931d678c26 Mon Sep 17 00:00:00 2001 From: Oliver Schlegel <11634412+oschlegel@users.noreply.github.com> Date: Mon, 12 Oct 2020 07:32:14 +0200 Subject: [PATCH] docs: Fix typo in changelog (#39223) PR Close #39223 --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index afaf3d9be9..746de43411 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -158,11 +158,11 @@ code relies on directive constructor types it may require some updates to improv * **forms:** Type of AbstractFormControl.parent now includes null `null` is now included in the types of .parent. If you don't already have a check for this case, -the TypeScript compiler might compain. A v11 migration exists which adds the not-null assertion +the TypeScript compiler might complain. A v11 migration exists which adds the non-null assertion operator where necessary. -In an unlikely case your code was testing the parnet against undefined with sitrct equality, -you'll need to change this to `=== null` instead, since the parent is not explicily initialized +In an unlikely case your code was testing the parent against undefined with strict equality, +you'll need to change this to `=== null` instead, since the parent is now explicitly initialized with `null` instead of being left `undefined`.