Skip to content

Commit 4a7b301

Browse files
committed
Tweak error message
1 parent 58674a8 commit 4a7b301

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

firestore/src/common/futures.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ Future<T> FailedFuture() {
5656
static auto* future = new Future<T>(FailedFuture<T>(
5757
Error::kErrorFailedPrecondition,
5858
"The object that issued this future is in an invalid state. This can be "
59-
"because:\n- the object was default-constructed and never reassigned;\n"
60-
"- the object was moved from;\n- the Firestore instance with which the "
59+
"because the object was default-constructed and never reassigned, "
60+
"the object was moved from, or the Firestore instance with which the "
6161
"object was associated has been destroyed."));
6262
return *future;
6363
}

0 commit comments

Comments
 (0)