Skip to content

Commit 468e03c

Browse files
committed
Fix text
1 parent 5a5678c commit 468e03c

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

docs-devsite/firestore_.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ export declare function getFirestore(app: FirebaseApp, databaseId: string): Fire
247247
| Parameter | Type | Description |
248248
| --- | --- | --- |
249249
| app | [FirebaseApp](./app.firebaseapp.md#firebaseapp_interface) | The [FirebaseApp](./app.firebaseapp.md#firebaseapp_interface) instance that the returned [Firestore](./firestore_.firestore.md#firestore_class) instance is associated with. |
250-
| databaseId | string | The name of database. |
250+
| databaseId | string | The name of the database. |
251251

252252
<b>Returns:</b>
253253

@@ -271,7 +271,7 @@ export declare function initializeFirestore(app: FirebaseApp, settings: Firestor
271271
| --- | --- | --- |
272272
| app | [FirebaseApp](./app.firebaseapp.md#firebaseapp_interface) | The [FirebaseApp](./app.firebaseapp.md#firebaseapp_interface) with which the [Firestore](./firestore_.firestore.md#firestore_class) instance will be associated. |
273273
| settings | [FirestoreSettings](./firestore_.firestoresettings.md#firestoresettings_interface) | A settings object to configure the [Firestore](./firestore_.firestore.md#firestore_class) instance. |
274-
| databaseId | string | The name of database. |
274+
| databaseId | string | The name of the database. |
275275

276276
<b>Returns:</b>
277277

@@ -901,7 +901,7 @@ export declare function getFirestore(databaseId: string): Firestore;
901901

902902
| Parameter | Type | Description |
903903
| --- | --- | --- |
904-
| databaseId | string | The name of database. |
904+
| databaseId | string | The name of the database. |
905905

906906
<b>Returns:</b>
907907

docs-devsite/firestore_lite.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export declare function getFirestore(app: FirebaseApp, databaseId: string): Fire
185185
| Parameter | Type | Description |
186186
| --- | --- | --- |
187187
| app | [FirebaseApp](./app.firebaseapp.md#firebaseapp_interface) | The [FirebaseApp](./app.firebaseapp.md#firebaseapp_interface) instance that the returned [Firestore](./firestore_.firestore.md#firestore_class) instance is associated with. |
188-
| databaseId | string | The name of database. |
188+
| databaseId | string | The name of the database. |
189189

190190
<b>Returns:</b>
191191

@@ -235,7 +235,7 @@ export declare function initializeFirestore(app: FirebaseApp, settings: Settings
235235
| --- | --- | --- |
236236
| app | [FirebaseApp](./app.firebaseapp.md#firebaseapp_interface) | The [FirebaseApp](./app.firebaseapp.md#firebaseapp_interface) with which the <code>Firestore</code> instance will be associated. |
237237
| settings | [Settings](./firestore_lite.settings.md#settings_interface) | A settings object to configure the <code>Firestore</code> instance. |
238-
| databaseId | string | The name of database. |
238+
| databaseId | string | The name of the database. |
239239

240240
<b>Returns:</b>
241241

@@ -498,7 +498,7 @@ export declare function getFirestore(databaseId: string): Firestore;
498498

499499
| Parameter | Type | Description |
500500
| --- | --- | --- |
501-
| databaseId | string | The name of database. |
501+
| databaseId | string | The name of the database. |
502502

503503
<b>Returns:</b>
504504

packages/firestore/src/api/database.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export class Firestore extends LiteFirestore {
134134
* @param app - The {@link @firebase/app#FirebaseApp} with which the {@link Firestore} instance will
135135
* be associated.
136136
* @param settings - A settings object to configure the {@link Firestore} instance.
137-
* @param databaseId - The name of database.
137+
* @param databaseId - The name of the database.
138138
* @returns A newly initialized {@link Firestore} instance.
139139
*/
140140
export function initializeFirestore(
@@ -210,7 +210,7 @@ export function getFirestore(app: FirebaseApp): Firestore;
210210
* default {@link @firebase/app#FirebaseApp}. If no instance exists, initializes a new
211211
* instance with default settings.
212212
*
213-
* @param databaseId - The name of database.
213+
* @param databaseId - The name of the database.
214214
* @returns The {@link Firestore} instance of the provided app.
215215
* @beta
216216
*/
@@ -230,7 +230,7 @@ export function getFirestore(): Firestore;
230230
*
231231
* @param app - The {@link @firebase/app#FirebaseApp} instance that the returned {@link Firestore}
232232
* instance is associated with.
233-
* @param databaseId - The name of database.
233+
* @param databaseId - The name of the database.
234234
* @returns The {@link Firestore} instance of the provided app.
235235
* @beta
236236
*/

packages/firestore/src/lite-api/database.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ export function initializeFirestore(
184184
* @param app - The {@link @firebase/app#FirebaseApp} with which the `Firestore` instance will
185185
* be associated.
186186
* @param settings - A settings object to configure the `Firestore` instance.
187-
* @param databaseId - The name of database.
187+
* @param databaseId - The name of the database.
188188
* @returns A newly initialized `Firestore` instance.
189189
* @beta
190190
*/
@@ -239,7 +239,7 @@ export function getFirestore(app: FirebaseApp): Firestore;
239239
* default {@link @firebase/app#FirebaseApp}. If no instance exists, initializes a new
240240
* instance with default settings.
241241
*
242-
* @param databaseId - The name of database.
242+
* @param databaseId - The name of the database.
243243
* @returns The {@link Firestore} instance of the provided app.
244244
* @beta
245245
*/
@@ -251,7 +251,7 @@ export function getFirestore(databaseId: string): Firestore;
251251
*
252252
* @param app - The {@link @firebase/app#FirebaseApp} instance that the returned {@link Firestore}
253253
* instance is associated with.
254-
* @param databaseId - The name of database.
254+
* @param databaseId - The name of the database.
255255
* @returns The {@link Firestore} instance of the provided app.
256256
* @beta
257257
*/

0 commit comments

Comments
 (0)