From 8f84f695411a77e520b640588dd682013c7a6a7e Mon Sep 17 00:00:00 2001
From: Shuvo Habib <shuvohabib@gmail.com>
Date: Mon, 18 Feb 2019 00:13:42 +0600
Subject: [PATCH] Update Typescript .md file that has a typo.

yarn create react-app my-app --typescript

A 'dash' is missing in the line `yarn create react-app my-app --typescript` . It should be `yarn create-react-app my-app --typescript`
---
 docusaurus/docs/adding-typescript.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docusaurus/docs/adding-typescript.md b/docusaurus/docs/adding-typescript.md
index d67cee32b..ea6f5b19a 100644
--- a/docusaurus/docs/adding-typescript.md
+++ b/docusaurus/docs/adding-typescript.md
@@ -14,7 +14,7 @@ npx create-react-app my-app --typescript
 
 # or
 
-yarn create react-app my-app --typescript
+yarn create-react-app my-app --typescript
 ```
 
 To add [TypeScript](https://www.typescriptlang.org/) to a Create React App project, first install it:
-- 
GitLab