From 142983cec0f0d9afec6689e3cad796d4d555677d Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Mon, 15 Nov 2021 12:50:32 -0800 Subject: [PATCH] Fix typo --- packages/vite-plugin-checker/src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/vite-plugin-checker/src/main.ts b/packages/vite-plugin-checker/src/main.ts index b71b68b4..fb56e286 100644 --- a/packages/vite-plugin-checker/src/main.ts +++ b/packages/vite-plugin-checker/src/main.ts @@ -152,8 +152,8 @@ function spawnChecker( // Command line args constructed by checkers therefore need to escape double quotes // to have them not striped out by cmd.exe. Using shell on all platforms lets us avoid // having to perform platform-specific logic around escaping quotes since all platform - // shells will strip out unescaped double quotes. shell=false on linux would result - // on escaped quotes not being unescaped. + // shells will strip out unescaped double quotes. E.g. shell=false on linux only would + // result in escaped quotes not being unescaped. shell: true, })