You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mw...@apache.org on 2013/07/25 00:13:07 UTC

[12/12] docs commit: [CB-3816] no space in 'Hello World' until other bug gets fixed

[CB-3816] no space in 'Hello World' until other bug gets fixed


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/2a5b0f08
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/2a5b0f08
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/2a5b0f08

Branch: refs/heads/master
Commit: 2a5b0f08965062b6000019d01dc74660a622f661
Parents: db19cf2
Author: Mike Sierra <le...@gmail.com>
Authored: Wed Jul 24 13:44:03 2013 -0400
Committer: Michael Brooks <mi...@michaelbrooks.ca>
Committed: Wed Jul 24 15:12:08 2013 -0700

----------------------------------------------------------------------
 docs/en/edge/guide/cli/index.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/2a5b0f08/docs/en/edge/guide/cli/index.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/cli/index.md b/docs/en/edge/guide/cli/index.md
index bdb8d97..3b728d6 100644
--- a/docs/en/edge/guide/cli/index.md
+++ b/docs/en/edge/guide/cli/index.md
@@ -72,7 +72,7 @@ To install the `cordova` command-line tool, follow these steps:
 Go to the directory where you maintain your source code, and run a
 command such as the following:
 
-        $ cordova create hello com.example.hello "Hello World"
+        $ cordova create hello com.example.hello HelloWorld
 
 The first argument specifies a _hello_ directory to be generated
 for your project. Its `www` subdirectory houses your application's
@@ -83,7 +83,7 @@ distribute the application.
 
 The other two arguments are optional: the `com.example.hello` argument
 provides your project with a reverse domain-style identifier, and the
-`"Hello World!"` provides the application's display text. You can edit
+`HelloWorld` provides the application's display text. You can edit
 both of these values later in the `config.xml` file.
 
 ## Add Platforms