diff --git a/src/content/api/hot-module-replacement.mdx b/src/content/api/hot-module-replacement.mdx index 122fdb2a1dd1..ab0e875453b0 100644 --- a/src/content/api/hot-module-replacement.mdx +++ b/src/content/api/hot-module-replacement.mdx @@ -29,7 +29,7 @@ if (module.hot) { // or if (import.meta.webpackHot) { import.meta.webpackHot.accept('./library.js', function () { - // Do something with the updated library modue… + // Do something with the updated library module… }); } ```