Skip to content

Commit 38e8cc6

Browse files
authored
Merge branch 'master' into typings-revert
2 parents a74e1fc + 3822d3a commit 38e8cc6

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ $ yarn test
102102
```
103103

104104
In addition, you can run any of the tests individually by running `yarn test` in
105-
an individaul package directory.
105+
an individual package directory.
106106

107107
## Building the SDK
108108

@@ -121,7 +121,7 @@ scope](https://www.npmjs.com/search?q=scope%3Afirebase) on NPM.
121121
### Helper Scripts
122122

123123
Each package in the `packages` directory exposes a `dev` script. This script
124-
will set up a watcher for development on the indiviual piece of the SDK. In
124+
will set up a watcher for development on the individual piece of the SDK. In
125125
addition, there is a top level `dev` script that can be run to start all of the
126126
watch tasks as well as a sandbox server.
127127

packages/app-types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export class FirebaseApp {
4444

4545
export interface FirebaseNamespace {
4646
/**
47-
* Create (and intialize) a FirebaseApp.
47+
* Create (and initialize) a FirebaseApp.
4848
*
4949
* @param options Options to configure the services used in the App.
5050
* @param name The optional name of the app to initialize ('[DEFAULT]' if

packages/app-types/private.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export interface _FirebaseNamespace extends FirebaseNamespace {
9898
* @param name The Firebase Service being registered.
9999
* @param createService Factory function to create a service instance.
100100
* @param serviceProperties Properties to copy to the service's namespace.
101-
* @param appHook All appHooks called before intializeApp returns to caller.
101+
* @param appHook All appHooks called before initializeApp returns to caller.
102102
* @param allowMultipleInstances Whether the registered service supports
103103
* multiple instances per app. If not specified, the default is false.
104104
*/

packages/app/test/firebaseApp.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ describe('Firebase App Class', () => {
3434
assert.equal(firebase.apps.length, 0);
3535
});
3636

37-
it('Can intialize DEFAULT App.', () => {
37+
it('Can initialize DEFAULT App.', () => {
3838
let app = firebase.initializeApp({});
3939
assert.equal(firebase.apps.length, 1);
4040
assert.strictEqual(app, firebase.apps[0]);

packages/auth/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export SAUCE_ACCESS_KEY=<the copy pasted access key>
7777
./buildtools/sauce_connect.sh
7878
```
7979

80-
Take note of the "Tunnel Identifier" value logged in the terminal,at the top. In
80+
Take note of the "Tunnel Identifier" value logged in the terminal, at the top. In
8181
the other terminal that has the exported variables, run the tests:
8282

8383
```bash

packages/auth/src/storage/indexeddb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ fireauth.storage.IndexedDB.prototype.initializeDb_ = function() {
201201

202202

203203
/**
204-
* Checks if indexedDB is intialized, if so, the callback is run, otherwise,
204+
* Checks if indexedDB is initialized, if so, the callback is run, otherwise,
205205
* it waits for the db to initialize and then runs the callback function.
206206
* @return {!goog.Promise<!IDBDatabase>} A promise for the initialized indexedDB
207207
* database.

packages/auth/test/autheventmanager_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1347,7 +1347,7 @@ function testProcessPopup_alreadyRedirected() {
13471347
// Fake popup window.
13481348
var popupWin = {};
13491349
// OAuth handler should be initialized automatically if not already
1350-
// intialized.
1350+
// initialized.
13511351
stubs.replace(
13521352
OAuthSignInHandler.prototype,
13531353
'addAuthEventListener',

packages/database/src/core/RepoManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export class RepoManager {
8484
fatal(
8585
"Can't determine Firebase Database URL. Be sure to include " +
8686
DATABASE_URL_OPTION +
87-
' option when calling firebase.intializeApp().'
87+
' option when calling firebase.initializeApp().'
8888
);
8989
}
9090

0 commit comments

Comments
 (0)