From ced5110dab1649bfd0ca1199d373ffe805388f47 Mon Sep 17 00:00:00 2001 From: minglu7 <1347866672@qq.com> Date: Fri, 9 Jan 2026 02:59:02 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20correct=20typo=20in=20bufferFastReturn?= =?UTF-8?q?=20JSDoc=20("accomodate"=20=E2=86=92=20"accommodate")=20(#16056?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/cli/src/ui/contexts/KeypressContext.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/ui/contexts/KeypressContext.tsx b/packages/cli/src/ui/contexts/KeypressContext.tsx index a5ff7e92a2..cd5b6224f0 100644 --- a/packages/cli/src/ui/contexts/KeypressContext.tsx +++ b/packages/cli/src/ui/contexts/KeypressContext.tsx @@ -193,7 +193,7 @@ function bufferBackslashEnter( * Converts return keys pressed quickly after other keys into plain * insertable return characters. * - * This is to accomodate older terminals that paste text without bracketing. + * This is to accommodate older terminals that paste text without bracketing. */ function bufferFastReturn(keypressHandler: KeypressHandler): KeypressHandler { let lastKeyTime = 0;