From dc2ac144b7059ec2d66f1e90316df40d3822c8b5 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 21 Jul 2025 17:54:44 -0400 Subject: Various spelling improvements (#3497) Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> Co-authored-by: Sandy Tao --- packages/core/src/utils/editor.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/core/src/utils/editor.test.ts') diff --git a/packages/core/src/utils/editor.test.ts b/packages/core/src/utils/editor.test.ts index 86274be2..a86d6f59 100644 --- a/packages/core/src/utils/editor.test.ts +++ b/packages/core/src/utils/editor.test.ts @@ -202,7 +202,7 @@ describe('editor utils', () => { }); } - it(`should fallback to last command "${commands[commands.length - 1]}" when none exist on non-windows`, () => { + it(`should fall back to last command "${commands[commands.length - 1]}" when none exist on non-windows`, () => { Object.defineProperty(process, 'platform', { value: 'linux' }); (execSync as Mock).mockImplementation(() => { throw new Error(); // all commands not found @@ -247,7 +247,7 @@ describe('editor utils', () => { }); } - it(`should fallback to last command "${win32Commands[win32Commands.length - 1]}" when none exist on windows`, () => { + it(`should fall back to last command "${win32Commands[win32Commands.length - 1]}" when none exist on windows`, () => { Object.defineProperty(process, 'platform', { value: 'win32' }); (execSync as Mock).mockImplementation(() => { throw new Error(); // all commands not found -- cgit v1.2.3