From 4402cb2e3f1db0f72f067b0724a43c33caaee9cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Ribeiro?= <63297375+andresribeiro@users.noreply.github.com> Date: Sat, 28 Aug 2021 03:31:43 -0300 Subject: [PATCH] Remove $ from README.md terminal commands (#133) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 49d60e8..4ccf9cd 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,13 @@ React Native MaskedView for iOS and Android. ## Getting Started ``` -$ yarn add @react-native-masked-view/masked-view +yarn add @react-native-masked-view/masked-view ``` or ``` -$ npm install --save @react-native-masked-view/masked-view +npm install --save @react-native-masked-view/masked-view ``` #### Using React Native >= 0.60 @@ -30,14 +30,14 @@ Linking the package manually is not required anymore with [Autolinking](https:// - **iOS Platform:** - `$ npx pod-install` + `npx pod-install` #### Using React Native < 0.60 You then need to link the native parts of the library for the platforms you are using. The easiest way to link the library is using the CLI tool by running this command from the root of your project: ``` -$ react-native link @react-native-masked-view/masked-view +react-native link @react-native-masked-view/masked-view ``` ## Usage