@@ -999,7 +999,7 @@ export class SnapshotMetadata implements PublicSnapshotMetadata {
999
999
* True if the snapshot contains the result of local writes (for example
1000
1000
* `set()` or `update()` calls) that have not yet been committed to the
1001
1001
* backend. If your listener has opted into metadata updates (via
1002
- * `PublicSnapshotListenOptions `) you will receive another snapshot with
1002
+ * `SnapshotListenOptions `) you will receive another snapshot with
1003
1003
* `hasPendingWrites` equal to false once the writes have been committed to
1004
1004
* the backend.
1005
1005
*/
@@ -1008,7 +1008,7 @@ export class SnapshotMetadata implements PublicSnapshotMetadata {
1008
1008
/**
1009
1009
* True if the snapshot was created from cached data rather than guaranteed
1010
1010
* up-to-date server data. If your listener has opted into metadata updates
1011
- * (via `PublicSnapshotListenOptions `) you will receive another snapshot with
1011
+ * (via `SnapshotListenOptions `) you will receive another snapshot with
1012
1012
* `fromCache` set to false once the client has received up-to-date data from
1013
1013
* the backend.
1014
1014
*/
@@ -2115,10 +2115,10 @@ function resultChangeType(type: ChangeType): PublicDocumentChangeType {
2115
2115
}
2116
2116
2117
2117
/**
2118
- * Converts custom model object of type T into PublicDocumentData by applying the
2118
+ * Converts custom model object of type T into DocumentData by applying the
2119
2119
* converter if it exists.
2120
2120
*
2121
- * This function is used when converting user objects to PublicDocumentData
2121
+ * This function is used when converting user objects to DocumentData
2122
2122
* because we want to provide the user with a more specific error message if
2123
2123
* their set() or fails due to invalid data originating from a toFirestore()
2124
2124
* call.
0 commit comments