Skip to content

Commit b2d44a8

Browse files
ashishpatelcsjamesdaniels
authored andcommitted
docs(): typo and grammar fixes in docs (#1931)
1 parent 23464c2 commit b2d44a8

5 files changed

+8
-8
lines changed

docs/deploying-angularfire-to-firebase.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
### 0. Build your Angular project for production
44

55
Before you can deploy your angular project, you need to build a version with your prod environment variables.
6-
Make sure to add your production firebase configuraiton to the src/environments/environment.prod.ts before you build.
6+
Make sure to add your production firebase configuration to the src/environments/environment.prod.ts before you build.
77

88
```bash
99
# build the angular project, creates a dist folder in your directory
@@ -12,7 +12,7 @@ ng build --prod
1212

1313
### 1. Initializing a Firebase project
1414

15-
You must initialize Firebase Hosting in order to deploy your application. In order to do this run the `firebase init` command.
15+
You must initialize Firebase Hosting in order to deploy your application. In order to do this, run the `firebase init` command.
1616

1717
Note: If you haven't installed the Firebase CLI yet, run this command:
1818

@@ -21,11 +21,11 @@ npm install --global firebase-tools
2121
```
2222

2323
- This command prompts you to enter a public directory. Enter `dist` (generated by `ng build -prod`).
24-
- The command will also ask you if you want to overwrite your index file. Type `n` since your Angular app includes a index file.
24+
- The command will also ask you if you want to overwrite your index file. Type `n` since your Angular app includes an index file.
2525
- This command also prompts you whether to configure the project as a single-page app. Enter `y` if you're using Angular Router or similar. Otherwise, enter `n`.
2626

2727
### 2. Deploy your Project
2828

2929
To deploy your app, simply run `firebase deploy`!
3030

31-
For more information on Firebase `init` and `deploy` commands, checkout the [Firebase CLI documentation](https://firebase.google.com/docs/cli/).
31+
For more information on Firebase `init` and `deploy` commands, check out the [Firebase CLI documentation](https://firebase.google.com/docs/cli/).

docs/install-and-setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
### 0. Prerequisites
66

7-
AngularFire provides multiple module formats for different types of builds. The guide is based off the Angular CLI. It is possible to do a manual setup with Webpack or a SystemJS build as well.
7+
AngularFire provides multiple module formats for different types of builds. The guide is based on the Angular CLI. It is possible to do a manual setup with Webpack or a SystemJS build as well.
88

99
```bash
1010
npm install @angular/cli

docs/install-angular-cli-windows10.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Installing Angular CLI on Windows 10
22

3-
> There had been installation issues of `@angular/cli` on Windows 10 system. Most of the time these errors are related to Python dependecies and node-gyp.
3+
> There had been installation issues of `@angular/cli` on Windows 10 system. Most of the time these errors are related to Python dependencies and node-gyp.
44
55
Something as below :
66

docs/version-4-upgrade.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ AngularFire2 4.0 is a refactor of the AngularFire2 package which implements
55

66
### Removing `AngularFire` for Modularity
77

8-
Prior to 4.0, AngularFire2 did not take advantage of the Firebase SDK's modularity for tree shaking. The `AngularFire` service has now been removed and the library broken up into smaller `@NgModule`s:
8+
Prior to 4.0, AngularFire2 did not take advantage of the Firebase SDK's modularity for tree shaking. The `AngularFire` service has now been removed and the library is broken up into smaller `@NgModule`s:
99

1010
* `AngularFireModule`
1111
* `AngularFireDatabaseModule`

docs/version-5-upgrade.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ AngularFire 5.0 is a refactor of the `AngularFireDatabase` module. It removes th
44

55
## Updating `FirebaseListObservable` to `AngularFireList<T>`
66

7-
Rather than `.list()` returning a `FirebaseListObservable`, it now returns an `AngularFireList<T>`. This service contains methods that allow you manipulate and stream data.
7+
Rather than `.list()` returning a `FirebaseListObservable`, it now returns an `AngularFireList<T>`. This service contains methods that allow you to manipulate and stream data.
88

99
In the case of streaming back data, you now call one of the observable methods on `AngularFireList`.
1010

0 commit comments

Comments
 (0)