From 8cfd759cfeeed251d3b0f54a8d0aa9eb678fc0ea Mon Sep 17 00:00:00 2001 From: Lallo Vigil Date: Sun, 14 Oct 2018 23:48:10 -0500 Subject: [PATCH] fixed minor typo (#19180) --- .../pages/guide/english/react-native/basic-commands/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/guide/english/react-native/basic-commands/index.md b/client/src/pages/guide/english/react-native/basic-commands/index.md index a049ae4c40..1392c14f52 100644 --- a/client/src/pages/guide/english/react-native/basic-commands/index.md +++ b/client/src/pages/guide/english/react-native/basic-commands/index.md @@ -8,7 +8,7 @@ Here you will find a list of basic commands to start developing iOS and Android ### Starting a new project -There are different ways you can bootstrap a react native application. You can use **Expo** or `create-react-native-app`(which in turns uses Expo-Cli) to start your new project, but with this method you are in more control of what happend in your projecto and can communicate, tweak and write your own modules with native libraries for iOS and Android mobile platform. +There are different ways you can bootstrap a react native application. You can use **Expo** or `create-react-native-app`(which in turns uses Expo-Cli) to start your new project, but with this method you are in more control of what happend in your project and can communicate, tweak and write your own modules with native libraries for iOS and Android mobile platform. ``` react-native init [PROJECT-NAME] cd [PROJECT-NAME]