From e7137e712c7b908976f95c62518e809876748620 Mon Sep 17 00:00:00 2001 From: Bee Ellis <44533466+hegelocampus@users.noreply.github.com> Date: Wed, 29 Jan 2020 16:29:31 -0800 Subject: [PATCH] Fix typo in yarn example Fixes #8395 --- 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 40c9c2242a8..b8e3eb6aa5f 100644 --- a/docusaurus/docs/adding-typescript.md +++ b/docusaurus/docs/adding-typescript.md @@ -16,7 +16,7 @@ npx create-react-app my-app --template typescript # or -yarn create react-app my-app --template typescript +yarn create-react-app my-app --template typescript ``` > If you've previously installed `create-react-app` globally via `npm install -g create-react-app`, we recommend you uninstall the package using `npm uninstall -g create-react-app` to ensure that `npx` always uses the latest version.