From 5a382b7a170ef35bc85f40809f2d961509af560d Mon Sep 17 00:00:00 2001 From: Snoppy Date: Mon, 17 Jun 2024 11:55:52 +0800 Subject: [PATCH] chore: fix typo [skip ci] (#11154) --- scripts/verify-treeshaking.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/verify-treeshaking.js b/scripts/verify-treeshaking.js index a93b8bbbd..f19fea92d 100644 --- a/scripts/verify-treeshaking.js +++ b/scripts/verify-treeshaking.js @@ -14,7 +14,7 @@ execa('pnpm', ['build', 'vue', '-f', 'global-runtime']).then(() => { errors.push( 'dev build contains unexpected esbuild object spread helper.\n' + 'This means { ...obj } syntax is used in runtime code. This should be ' + - 'refactoed to use the `extend` helper to avoid the extra code.', + 'refactored to use the `extend` helper to avoid the extra code.', ) }