From 4a8ddf56879d2c421d8fa1d9802e72a4606beba0 Mon Sep 17 00:00:00 2001 From: Alastair <66482739+alastairsounds@users.noreply.github.com> Date: Sun, 20 Oct 2024 03:55:37 -0600 Subject: [PATCH] Fixed typo, was consructor now constructor. (#7536) Very minor typo in the Typescript "Constructor Overloading" section. For the paragraph beginning in "Note that, similar to function overloading . . ." --- .../content/constructor-overloading@oxzcYXxy2I7GI7nbvFYVa.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/typescript/content/constructor-overloading@oxzcYXxy2I7GI7nbvFYVa.md b/src/data/roadmaps/typescript/content/constructor-overloading@oxzcYXxy2I7GI7nbvFYVa.md index e290eafdc..749d30071 100644 --- a/src/data/roadmaps/typescript/content/constructor-overloading@oxzcYXxy2I7GI7nbvFYVa.md +++ b/src/data/roadmaps/typescript/content/constructor-overloading@oxzcYXxy2I7GI7nbvFYVa.md @@ -13,7 +13,7 @@ class Point { } ``` -Note that, similar to function overloading, we only have one implementation of the consructor and it's the only the signature that is overloaded. +Note that, similar to function overloading, we only have one implementation of the constructor and it's the only the signature that is overloaded. Learn more from the following resources: