From 6abe52529c01f4298f3ae9244ebddbd5df1ec52f Mon Sep 17 00:00:00 2001 From: Dhananjay-JSR <47073516+Dhananjay-JSR@users.noreply.github.com> Date: Sun, 8 May 2022 15:11:24 +0530 Subject: [PATCH] Fixed a Type in Hot Module Replacement Page --- src/content/api/hot-module-replacement.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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… }); } ```