Skip to content

Commit

Permalink
added missing fullstops and colons (GeekyAnts#2920)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurav1620 authored and sankhadeeproy007 committed Sep 10, 2019
1 parent aab70c3 commit 0457587
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
18 changes: 9 additions & 9 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ NativeBase is an infant and growing rapidly, so we planned to stick to Git Flow.

#### a. Reporting Bugs

- Always update to the most recent `master` release; the bug may already be resolved.
- Always update to the most recent `master` release, the bug may already be resolved.
- Search for similar issues in the issues list for this repo. It may already be an identified problem.
- If you want to contribute to an issue that is not part of this list, you are welcome to submit [new issue](https://github.com/GeekyAnts/NativeBase/issues/new) to our GitHub Repository.
- In that case, provide a short description of the visible symptoms. Include error messages, screen shots, and stack traces.
- In that case, provide a short description of the visible symptoms. Include error messages, screenshots, and stack traces.
- If applicable, submit a step-by-step walkthrough of how to reproduce the issue.
- In any case, a **closed issue** is not necessarily the end of the story! If more info becomes available after an issue is closed, it can be reopened for further consideration.

Expand Down Expand Up @@ -110,39 +110,39 @@ You are now ready to send PR to NativeBase!

### 3. Development Environment

- Fork this repository
- Fork this repository.

- Move over to the TestBed App [here](https://github.com/GeekyAnts/native-base-testbed) and clone it.
- Move over to the TestBed App [here](https://github.com/GeekyAnts/native-base-testbed) and clone it:

```bash
cd native-base-testbed and npm install
```

- Clone your fork of NativeBase
- Clone your fork of NativeBase:

```git
git clone [email protected]:${YOUR_USERNAME}/NativeBase.git
```

- Navigate to NativeBase
- Navigate to NativeBas:e

```
cd NativeBase/
```

- Add main repo remote
- Add main repo remote:

```git
git remote add nativebase [email protected]:GeekyAnts/NativeBase.git
```

- Install dependencies
- Install dependencies:

```bash
npm install
```

* Navigate to your app
* Navigate to your app:

```
cd ../
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ What is really great with [NativeBase](https://nativebase.io/) is that you can u

**a. Setup with pure React Native app**

*Install NativeBase*
*Install NativeBase:*

```js
npm install native-base --save
```
*Install Peer Dependencies*<br />
*Install Peer Dependencies:*<br />
The peer dependencies included from any npm packages does not automatically get installed. Your application will not depend on it explicitly.

```js
Expand All @@ -67,7 +67,7 @@ You've successfully setup [NativeBase](https://nativebase.io/) with your [React
Expo helps you make React Native apps with no build configuration. It works on macOS, Windows, and Linux. <br />
Refer this link for additional information on [Expo](https://docs.expo.io/)

*Install NativeBase*
*Install NativeBase:*
```js
npm install native-base --save
```
Expand All @@ -78,7 +78,7 @@ npm install native-base --save
[NativeBase](https://nativebase.io/) uses some custom fonts that can be loaded using **Font.loadAsync**. Check out the [Expo Font documentation](https://docs.expo.io/versions/latest/sdk/font/).
<br />

*Install Expo Fonts*
*Install Expo Fonts:*
```bash
expo install expo-font
```
Expand Down Expand Up @@ -133,28 +133,28 @@ You can run the following command to create the boilerplate, provided you have [
```
ignite new appname --boilerplate native-base-boilerplate
```
Go to app location
Go to app location:
```sh
cd appname
```
For iOS run
For iOS run:
```sh
react-native run-ios
```
For Android run
For Android run:
```sh
react-native run-android
```
Refer [ignite-native-base-boilerplate](https://github.com/GeekyAnts/ignite-native-base-boilerplate) page for additional information
Refer [ignite-native-base-boilerplate](https://github.com/GeekyAnts/ignite-native-base-boilerplate) page for additional information.

## 5. Components

[NativeBase](https://nativebase.io/) is made from effective building blocks referred to as components. The Components are constructed in pure [React Native](https://github.com/facebook/react-native) platform along with some JavaScript functionality with rich set of customisable properties. These components allow you to quickly build the perfect interface.

## 6. NativeBase for Web

NativeBase is now available for React web lovers. Check the [demo](https://nativebase.io/kitchen-sink-web-app/)
Find the repo [here](https://github.com/GeekyAnts/NativeBase-KitchenSink/tree/web-support)
NativeBase is now available for React web lovers. Check the [demo](https://nativebase.io/kitchen-sink-web-app/).
Find the repo [here](https://github.com/GeekyAnts/NativeBase-KitchenSink/tree/web-support).


## 7. Compatibility Versions
Expand Down

0 comments on commit 0457587

Please sign in to comment.