Skip to content

Commit 9bdd73d

Browse files
authored
#3399 Typos in docs (#3400)
* docs: typo "compatability" * docs: typo "custimze" * docs: fix incorrect document id
1 parent 8370222 commit 9bdd73d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ AngularFire doesn't follow Angular's versioning as Firebase also has breaking ch
9191

9292
### Polyfills
9393

94-
Neither AngularFire or Firebase ship with polyfills. To have compatability across as wide-range of environments we suggest the following polyfills be added to your application:
94+
Neither AngularFire or Firebase ship with polyfills. To have compatibility across as wide-range of environments we suggest the following polyfills be added to your application:
9595

9696
| API | Environments | Suggested Polyfill | License |
9797
|-----|--------------|--------------------|---------|
@@ -114,7 +114,7 @@ Neither AngularFire or Firebase ship with polyfills. To have compatability acros
114114

115115
We have three sample apps in this repository:
116116

117-
1. [`samples/compat`](samples/compat) a kitchen sink application that demonstrates use of the "compatability" API
117+
1. [`samples/compat`](samples/compat) a kitchen sink application that demonstrates use of the "compatibility" API
118118
1. [`samples/modular`](samples/modular) a kitchen sink application that demonstrates the new tree-shakable API
119119
1. [`samples/advanced`](samples/advanced) the same app as `samples/modular` but demonstrates more advanced concepts such as Angular Universal state-transfer, dynamically importing Firebase feature modules, and Firestore data bundling.
120120

docs/deploy/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ To customize the deployment flow, you can use the configuration files you're alr
9191

9292
### Configuring Cloud Functions
9393

94-
Setting `functionsNodeVersion` and `functionsRuntimeOptions` in your `angular.json` allow you to custimze the version of Node.js Cloud Functions is running and run-time settings like timeout, VPC connectors, and memory.
94+
Setting `functionsNodeVersion` and `functionsRuntimeOptions` in your `angular.json` allow you to customize the version of Node.js Cloud Functions is running and run-time settings like timeout, VPC connectors, and memory.
9595

9696
```json
9797
"deploy": {
@@ -201,4 +201,4 @@ The above configuration specifies the following:
201201
2. `ng deploy projectName` will deploy the specified project with default configuration.
202202
3. `ng deploy projectName --configuration=storybook --siteTarget=mySiteTarget` will deploy `projectName` to `mySiteTarget` with configuration`storybook`.
203203

204-
All of the options are optional
204+
All of the options are optional

docs/firestore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export class UserProfileComponent {
5959
With the reference to Cloud Firestore available in a component it is now possible to connect read from and write to the database.
6060

6161
### Reading data
62-
In Cloud Firestore data is stored in `documents` and `documents` are stored in `collections`. The path to data follows `<collection_name>/<document_id>` and continues if there are subcollections. For example, `"users/ABC1245/posts/XYZ6789"` represents:
62+
In Cloud Firestore data is stored in `documents` and `documents` are stored in `collections`. The path to data follows `<collection_name>/<document_id>` and continues if there are subcollections. For example, `"users/ABC12345/posts/XYZ6789"` represents:
6363
* `users` collection
6464
* document id `ABC12345`
6565
* `posts` collection

0 commit comments

Comments
 (0)