From 359a23234892acc6f481f5c90ca27c2435e32a01 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change `run time` to `runtime` for both correctness and consistency with every other instance of the expression in the docs. PR-URL: https://github.com/nodejs/node/pull/18142 Reviewed-By: Luigi Pinca Reviewed-By: Daniel Bevenius Reviewed-By: Tiancheng "Timothy" Gu Reviewed-By: Franziska Hinkelmann Reviewed-By: James M Snell Reviewed-By: Colin Ihrig Reviewed-By: Tobias Nießen Reviewed-By: Khaidi Chu Reviewed-By: Jon Moss --- 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 08d3ea6b306..20e582d30b8 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