From 334be0feba771a22568760d8160d5a4789218cff Mon Sep 17 00:00:00 2001 From: Yann Pringault Date: Wed, 4 Jan 2017 14:42:15 +0100 Subject: [PATCH] src: fix space for module version mismatch error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/10606 Reviewed-By: Colin Ihrig Reviewed-By: Michaƫl Zasso Reviewed-By: Anna Henningsen Reviewed-By: James M Snell Reviewed-By: Rich Trott Reviewed-By: Michael Dawson --- src/node.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.cc b/src/node.cc index 5a2b4843bed284..5c11cfd0961696 100644 --- a/src/node.cc +++ b/src/node.cc @@ -2417,7 +2417,7 @@ void DLOpen(const FunctionCallbackInfo& args) { "\nwas compiled against a different Node.js version using" "\nNODE_MODULE_VERSION %d. This version of Node.js requires" "\nNODE_MODULE_VERSION %d. Please try re-compiling or " - "re-installing\nthe module (for instance, using `npm rebuild` or" + "re-installing\nthe module (for instance, using `npm rebuild` or " "`npm install`).", *filename, mp->nm_version, NODE_MODULE_VERSION);