diff --git a/dev/src/types.ts b/dev/src/types.ts index b51ff37ff..a2ae70988 100644 --- a/dev/src/types.ts +++ b/dev/src/types.ts @@ -204,11 +204,10 @@ export interface Settings { maxIdleChannels?: number; /** - * Whether to skip nested properties that are set to `undefined` during object - * serialization. If set to `true`, these properties will be skipped and are - * not be written to Firestore. If the setting is set `false` or omitted, - * the SDK will throw an exception when it encounters properties of type - * `undefined`. + * Whether to skip nested properties that are set to `undefined` during + * object serialization. If set to `true`, these properties are skipped + * and not written to Firestore. If set `false` or omitted, the SDK throws + * an exception when it encounters properties of type `undefined`. */ ignoreUndefinedProperties?: boolean; diff --git a/types/firestore.d.ts b/types/firestore.d.ts index 55e7b9870..efa36799d 100644 --- a/types/firestore.d.ts +++ b/types/firestore.d.ts @@ -146,10 +146,9 @@ declare namespace FirebaseFirestore { /** * Whether to skip nested properties that are set to `undefined` during - * object serialization. If set to `true`, these properties will be skipped - * and are not be written to Firestore. If the setting is set `false` or - * omitted, the SDK will throw an exception when it encounters properties - * of type `undefined`. + * object serialization. If set to `true`, these properties are skipped + * and not written to Firestore. If set `false` or omitted, the SDK throws + * an exception when it encounters properties of type `undefined`. */ ignoreUndefinedProperties?: boolean;