summaryrefslogtreecommitdiff
path: root/std/node
diff options
context:
space:
mode:
Diffstat (limited to 'std/node')
-rw-r--r--std/node/events_test.ts10
-rw-r--r--std/node/module.ts2
2 files changed, 6 insertions, 6 deletions
diff --git a/std/node/events_test.ts b/std/node/events_test.ts
index 5960290af..e3167e363 100644
--- a/std/node/events_test.ts
+++ b/std/node/events_test.ts
@@ -444,7 +444,7 @@ test({
});
test({
- name: "asyncronous iteration of events are handled as expected",
+ name: "asynchronous iteration of events are handled as expected",
async fn() {
const ee = new EventEmitter();
setTimeout(() => {
@@ -472,7 +472,7 @@ test({
});
test({
- name: "asyncronous error handling of emitted events works as expected",
+ name: "asynchronous error handling of emitted events works as expected",
async fn() {
const ee = new EventEmitter();
const _err = new Error("kaboom");
@@ -497,7 +497,7 @@ test({
});
test({
- name: "error thrown during asyncronous processing of events is handled",
+ name: "error thrown during asynchronous processing of events is handled",
async fn() {
const ee = new EventEmitter();
const _err = new Error("kaboom");
@@ -527,7 +527,7 @@ test({
test({
name:
- "error thrown in processing loop of asyncronous event prevents processing of additional events",
+ "error thrown in processing loop of asynchronous event prevents processing of additional events",
async fn() {
const ee = new EventEmitter();
const _err = new Error("kaboom");
@@ -552,7 +552,7 @@ test({
});
test({
- name: "asyncronous iterator next() works as expected",
+ name: "asynchronous iterator next() works as expected",
async fn() {
const ee = new EventEmitter();
const iterable = on(ee, "foo");
diff --git a/std/node/module.ts b/std/node/module.ts
index f777e658f..e73eb4d5d 100644
--- a/std/node/module.ts
+++ b/std/node/module.ts
@@ -1000,7 +1000,7 @@ function emitCircularRequireWarning(prop: any): void {
}
// A Proxy that can be used as the prototype of a module.exports object and
-// warns when non-existend properties are accessed.
+// warns when non-existent properties are accessed.
const CircularRequirePrototypeWarningProxy = new Proxy(
{},
{