From 1b65034e7dbeecece65c05150bca9a77091b3341 Mon Sep 17 00:00:00 2001 From: rosen-vladimirov Date: Mon, 27 Apr 2015 10:50:58 +0300 Subject: [PATCH] Fix help of run command Run command's help is not shown correctly in the terminal as there's a new line after applying context sensitivity. --- docs/man_pages/project/testing/run.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/man_pages/project/testing/run.md b/docs/man_pages/project/testing/run.md index d58801846e..a88c059c5f 100644 --- a/docs/man_pages/project/testing/run.md +++ b/docs/man_pages/project/testing/run.md @@ -3,8 +3,7 @@ run Usage | Synopsis ---|--- -<% if((isConsole && isMacOS) || isHtml) { %>General | `$ tns run `<% } %> -<% if(isConsole && (isLinux || isWindows)) { %>General | `$ tns run android`<% } %> +<% if((isConsole && isMacOS) || isHtml) { %>General | `$ tns run `<% } %><% if(isConsole && (isLinux || isWindows)) { %>General | `$ tns run android`<% } %> Runs your project on a connected device or in the native emulator for the selected platform.<% if(isMacOS) { %>You must specify the target platform on which you want to run your project.<% } %><% if(isConsole && (isLinux || isWindows)) { %>You must run `$ tns run android`<% } %>