From 2b32bce8060e2623bfa8bcf269cc3e4bccdff6d2 Mon Sep 17 00:00:00 2001 From: Denver Coneybeare Date: Thu, 16 Dec 2021 13:59:10 -0500 Subject: [PATCH] future.h: Fix minor typo in the docs for FutureBase --- app/src/include/firebase/future.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/include/firebase/future.h b/app/src/include/firebase/future.h index 3f63b3e079..5b57b14021 100644 --- a/app/src/include/firebase/future.h +++ b/app/src/include/firebase/future.h @@ -114,7 +114,7 @@ class FutureHandle { /// pointers to its Futures. Therefore, all Futures must be destroyed /// *before* the API is destroyed. /// - Futures can be moved or copied. Call results are reference counted, -/// and are destroyed when they are long longer referenced by any Futures. +/// and are destroyed when they are no longer referenced by any Futures. /// - The actual `Status`, `Error`, and `Result` values are kept inside the /// API. This makes synchronization and data management easier. ///