Skip to content

Commit d653310

Browse files
Fix typo in hot plugins: Propably => Probably
1 parent c20e1a4 commit d653310

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

hot/dev-server.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if(module.hot) {
1717

1818
if(!updatedModules) {
1919
console.warn("[HMR] Cannot find update. Need to do a full reload!");
20-
console.warn("[HMR] (Propably because of restarting the webpack-dev-server)")
20+
console.warn("[HMR] (Probably because of restarting the webpack-dev-server)")
2121
window.location.reload();
2222
return;
2323
}
@@ -56,5 +56,5 @@ if(module.hot) {
5656
});
5757
console.log("[HMR] Waiting for update signal from WDS...");
5858
} else {
59-
throw new Error("[HMR] Hot Module Replacement is disabled");
59+
throw new Error("[HMR] Hot Module Replacement is disabled.");
6060
}

hot/only-dev-server.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if(module.hot) {
1616

1717
if(!updatedModules) {
1818
console.warn("[HMR] Cannot find update. Need to do a full reload!");
19-
console.warn("[HMR] (Propably because of restarting the webpack-dev-server)")
19+
console.warn("[HMR] (Probably because of restarting the webpack-dev-server)")
2020
return;
2121
}
2222

@@ -79,5 +79,5 @@ if(module.hot) {
7979
});
8080
console.log("[HMR] Waiting for update signal from WDS...");
8181
} else {
82-
throw new Error("[HMR] Hot Module Replacement is disabled");
82+
throw new Error("[HMR] Hot Module Replacement is disabled.");
8383
}

0 commit comments

Comments
 (0)