Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/node-config-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@
},
"experimental-print-required-tla": {
"type": "boolean",
"description": "Print pending top-level await. If --require-module is true, evaluate asynchronous graphs loaded by `require()` but do not run the microtasks, in order to to find and print top-level await in the graph"
"description": "Print pending top-level await. If --require-module is true, evaluate asynchronous graphs loaded by `require()` but do not run the microtasks, in order to find and print top-level await in the graph"
Comment thread
Renegade334 marked this conversation as resolved.
},
"experimental-repl-await": {
"type": "boolean",
Expand Down
2 changes: 1 addition & 1 deletion src/node_options.cc
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() {
AddOption("--experimental-print-required-tla",
"Print pending top-level await. If --require-module "
"is true, evaluate asynchronous graphs loaded by `require()` but "
"do not run the microtasks, in order to to find and print "
"do not run the microtasks, in order to find and print "
"top-level await in the graph",
&EnvironmentOptions::print_required_tla,
kAllowedInEnvvar);
Expand Down
Loading