Skip to content

Commit d359e01

Browse files
authored
Fix spelling typos in MDN content (#42923)
1 parent 9d0965b commit d359e01

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

files/en-us/web/api/worker/worker/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Module workers and their dependencies are loaded and executed using ECMAScript m
100100
Classic workers are fetched and executed as scripts:
101101

102102
- Dependencies are imported using the {{domxref("WorkerGlobalScope.importScripts()")}} method
103-
- Fetched synchonously in `no-cors` mode
103+
- Fetched synchronously in `no-cors` mode
104104

105105
### Importing scripts or modules
106106

files/en-us/web/api/workerglobalscope/importscripts/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ browser-compat: api.WorkerGlobalScope.importScripts
1717
1818
The **`importScripts()`** method of the {{domxref("WorkerGlobalScope")}} interface synchronously imports one or more scripts into the scope of a [classic worker](/en-US/docs/Web/API/Worker/Worker#module_and_classic_workers) (a worker constructed from a classic script).
1919

20-
Note that the method cannot be used in [module workers](/en-US/docs/Web/API/Worker/Worker#module_and_classic_workers), which instead load dependenices using [`import` statements](/en-US/docs/Web/JavaScript/Reference/Statements/import).
20+
Note that the method cannot be used in [module workers](/en-US/docs/Web/API/Worker/Worker#module_and_classic_workers), which instead load dependencies using [`import` statements](/en-US/docs/Web/JavaScript/Reference/Statements/import).
2121

2222
## Syntax
2323

0 commit comments

Comments
 (0)