From fa0b214bd4ccbd8d37a96aca6dc54ab52283bccb Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sat, 13 Jan 2018 21:53:27 -0800 Subject: [PATCH] doc: fix typo in esm.md Change `run time` to `runtime` for both correctness and consistency with every other instance of the expression in the docs. --- doc/api/esm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/esm.md b/doc/api/esm.md index 08d3ea6b3060b9..20e582d30b8529 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -34,7 +34,7 @@ node --experimental-modules my-app.mjs Only the CLI argument for the main entry point to the program can be an entry point into an ESM graph. Dynamic import can also be used with the flag -`--harmony-dynamic-import` to create entry points into ESM graphs at run time. +`--harmony-dynamic-import` to create entry points into ESM graphs at runtime. ### Unsupported