From bd333c7a278c0e750d57b375879283d568acc3e0 Mon Sep 17 00:00:00 2001 From: Samuel Warfield Date: Tue, 11 Oct 2022 16:13:17 -0600 Subject: [PATCH] Fixing a typo Release note: none --- src/workerd/jsg/promise.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/workerd/jsg/promise.h b/src/workerd/jsg/promise.h index a415bee0f79..3a20299e1f8 100644 --- a/src/workerd/jsg/promise.h +++ b/src/workerd/jsg/promise.h @@ -130,7 +130,7 @@ struct ThenCatchPair { // the success and error callbacks share the same "data" object so that both underlying C++ // callbacks are proactively destroyed after one of the runs. Otherwise, we'd only destroy the // function that was called, while the other one would have to wait for GC, which may mean - // keepnig around C++ resources longer than necessary. + // keeping around C++ resources longer than necessary. ThenFunc thenFunc; CatchFunc catchFunc;