@@ -179,7 +179,7 @@ export function onDocumentWritten<Document extends string>(
179
179
180
180
/**
181
181
* Event handler that triggers when a document is created, updated, or deleted in Firestore.
182
- * This trigger will also provide the authentication context of the principal who triggered the event.
182
+ * This trigger also provides the authentication context of the principal who triggered the event.
183
183
*
184
184
* @param document - The Firestore document path to trigger on.
185
185
* @param handler - Event handler which is run every time a Firestore create, update, or delete occurs.
@@ -193,7 +193,7 @@ export function onDocumentWrittenWithAuthContext<Document extends string>(
193
193
194
194
/**
195
195
* Event handler that triggers when a document is created, updated, or deleted in Firestore.
196
- * This trigger will also provide the authentication context of the principal who triggered the event.
196
+ * This trigger also provides the authentication context of the principal who triggered the event.
197
197
*
198
198
* @param opts - Options that can be set on an individual event-handling function.
199
199
* @param handler - Event handler which is run every time a Firestore create, update, or delete occurs.
@@ -207,7 +207,7 @@ export function onDocumentWrittenWithAuthContext<Document extends string>(
207
207
208
208
/**
209
209
* Event handler that triggers when a document is created, updated, or deleted in Firestore.
210
- * This trigger will also provide the authentication context of the principal who triggered the event.
210
+ * This trigger also provides the authentication context of the principal who triggered the event.
211
211
*
212
212
* @param opts - Options or a string document path.
213
213
* @param handler - Event handler which is run every time a Firestore create, update, or delete occurs.
@@ -264,7 +264,7 @@ export function onDocumentCreated<Document extends string>(
264
264
265
265
/**
266
266
* Event handler that triggers when a document is created in Firestore.
267
- * This trigger will also provide the authentication context of the principal who triggered the event.
267
+ * This trigger also provides the authentication context of the principal who triggered the event.
268
268
*
269
269
* @param document - The Firestore document path to trigger on.
270
270
* @param handler - Event handler which is run every time a Firestore create occurs.
@@ -278,7 +278,7 @@ export function onDocumentCreatedWithAuthContext<Document extends string>(
278
278
279
279
/**
280
280
* Event handler that triggers when a document is created in Firestore.
281
- * This trigger will also provide the authentication context of the principal who triggered the event.
281
+ * This trigger also provides the authentication context of the principal who triggered the event.
282
282
*
283
283
* @param opts - Options that can be set on an individual event-handling function.
284
284
* @param handler - Event handler which is run every time a Firestore create occurs.
@@ -347,7 +347,7 @@ export function onDocumentUpdated<Document extends string>(
347
347
348
348
/**
349
349
* Event handler that triggers when a document is updated in Firestore.
350
- * This trigger will also provide the authentication context of the principal who triggered the event.
350
+ * This trigger also provides the authentication context of the principal who triggered the event.
351
351
*
352
352
* @param document - The Firestore document path to trigger on.
353
353
* @param handler - Event handler which is run every time a Firestore update occurs.
@@ -360,7 +360,7 @@ export function onDocumentUpdatedWithAuthContext<Document extends string>(
360
360
) : CloudFunction < FirestoreEvent < Change < QueryDocumentSnapshot > | undefined , ParamsOf < Document > > > ;
361
361
/**
362
362
* Event handler that triggers when a document is updated in Firestore.
363
- * This trigger will also provide the authentication context of the principal who triggered the event.
363
+ * This trigger also provides the authentication context of the principal who triggered the event.
364
364
*
365
365
* @param opts - Options that can be set on an individual event-handling function.
366
366
* @param handler - Event handler which is run every time a Firestore update occurs.
@@ -430,7 +430,7 @@ export function onDocumentDeleted<Document extends string>(
430
430
431
431
/**
432
432
* Event handler that triggers when a document is deleted in Firestore.
433
- * This trigger will also provide the authentication context of the principal who triggered the event.
433
+ * This trigger also provides the authentication context of the principal who triggered the event.
434
434
*
435
435
* @param document - The Firestore document path to trigger on.
436
436
* @param handler - Event handler which is run every time a Firestore delete occurs.
@@ -444,7 +444,7 @@ export function onDocumentDeletedWithAuthContext<Document extends string>(
444
444
445
445
/**
446
446
* Event handler that triggers when a document is deleted in Firestore.
447
- * This trigger will also provide the authentication context of the principal who triggered the event.
447
+ * This trigger also provides the authentication context of the principal who triggered the event.
448
448
*
449
449
* @param opts - Options that can be set on an individual event-handling function.
450
450
* @param handler - Event handler which is run every time a Firestore delete occurs.
0 commit comments