From a567c21db18b3e84ef895f6b36ee55ea81fea475 Mon Sep 17 00:00:00 2001 From: HaeJun Seo Date: Mon, 19 Dec 2022 14:12:06 +0900 Subject: [PATCH] docs: fix typo succeful (#11415) --- docs/guide/api-hmr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/api-hmr.md b/docs/guide/api-hmr.md index 1f23fdf8626a67..ee66f73b8f9ba7 100644 --- a/docs/guide/api-hmr.md +++ b/docs/guide/api-hmr.md @@ -94,7 +94,7 @@ if (import.meta.hot) { ['./foo.js', './bar.js'], ([newFooModule, newBarModule]) => { // The callback receives an array where only the updated module is non null - // If the update was not succeful (syntax error for ex.), the array is empty + // If the update was not successful (syntax error for ex.), the array is empty }, ) }