From f26482d6febc597f0a2ef3377a4c22821e33cdf0 Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Fri, 29 Apr 2022 09:06:04 -0500 Subject: [PATCH] docs(firestore, increment): refine caution warning --- packages/firestore/lib/index.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/firestore/lib/index.d.ts b/packages/firestore/lib/index.d.ts index 8a824a62bf..011bd1c6b6 100644 --- a/packages/firestore/lib/index.d.ts +++ b/packages/firestore/lib/index.d.ts @@ -720,9 +720,9 @@ export namespace FirebaseFirestoreTypes { * }); * ``` * - * Please be careful using this operator. It may not be reliable enough for use in strict accounting, as it - * appears writes may be dropped in situations not fully understood yet, but possibly correlated with increment frequency. - * See https://github.com/invertase/react-native-firebase/discussions/5914 + * Please be careful using this operator. It may not be reliable enough for use in circumstances where absolute accuracy is required, + * as it appears writes to Firestore may sometimes be duplicated in situations not fully understood yet, but possibly correlated with + * write frequency. See https://github.com/invertase/react-native-firebase/discussions/5914 * * @param n The value to increment by. */