1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-03-15 12:49:43 +01:00

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 . . ."
This commit is contained in:
Alastair 2024-10-20 03:55:37 -06:00 committed by GitHub
parent 4c54997bfb
commit 4a8ddf5687
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: Learn more from the following resources: