From 5773318758a75038717683261ba84d2f44c44a93 Mon Sep 17 00:00:00 2001 From: tom Date: Fri, 1 Dec 2017 12:04:55 -0500 Subject: [PATCH] Fixed spelling of "Dynamic Type" --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 19bd883..d1bce11 100644 --- a/README.md +++ b/README.md @@ -247,11 +247,11 @@ if (isValidArray(a)) a.map( x => x.toUpperCase() ); ``` -## Dinamic type +## Dynamic type Concept | Code --- | --- -Dinamic type of any object | `type typeOfObject = typeof SomeObject;` +Dynamic type of any object | `type typeOfObject = typeof SomeObject;` **Example** ```typescript