From 4b3baca999a4a229433c891cf69c2c4e2d634b89 Mon Sep 17 00:00:00 2001 From: epriestley Date: Fri, 16 Oct 2020 12:30:45 -0700 Subject: [PATCH] Fix a typo of "previously" in FutureIterator Summary: Ref T13572. D21466 had a typo in a comment. Test Plan: Read carefully. Maniphest Tasks: T13572 Differential Revision: https://secure.phabricator.com/D21478 --- src/future/FutureIterator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/future/FutureIterator.php b/src/future/FutureIterator.php index 96a41e3d..bb464cd4 100644 --- a/src/future/FutureIterator.php +++ b/src/future/FutureIterator.php @@ -194,7 +194,7 @@ final class FutureIterator * @task iterator */ public function next() { - // See T13572. If we preivously resolved and returned a Future, release + // See T13572. If we previously resolved and returned a Future, release // it now. This prevents us from holding Futures indefinitely when callers // like FuturePool build long-lived iterators and keep adding new Futures // to them.