diff options
author | Anubhav Saxena <anubhavsaxena97@gmail.com> | 2016-05-24 22:28:56 +0530 |
---|---|---|
committer | Anubhav Saxena <anubhavsaxena97@gmail.com> | 2016-05-24 22:28:56 +0530 |
commit | 24ee911497fdfa950b0481108e8750d08de7f36d (patch) | |
tree | ff04a6c8b91639dd6c2dc4b7d0b1c1a3a0b4535e | |
parent | e882ce00ab38a5b6c652ac515bde76b86eef4dd7 (diff) | |
download | rails-24ee911497fdfa950b0481108e8750d08de7f36d.tar.gz rails-24ee911497fdfa950b0481108e8750d08de7f36d.tar.bz2 rails-24ee911497fdfa950b0481108e8750d08de7f36d.zip |
Fixing commands with Markdown formatting
Adding '$' to emulate shell syntax
-rw-r--r-- | railties/RDOC_MAIN.rdoc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/RDOC_MAIN.rdoc b/railties/RDOC_MAIN.rdoc index 26a25ee9dc..ef9bbf3d7e 100644 --- a/railties/RDOC_MAIN.rdoc +++ b/railties/RDOC_MAIN.rdoc @@ -35,17 +35,17 @@ can read more about Action Pack in its {README}[link:files/actionpack/README_rdo 1. Install \Rails at the command prompt if you haven't yet: - gem install rails + $ gem install rails 2. At the command prompt, create a new \Rails application: - rails new myapp + $ rails new myapp where "myapp" is the application name. 3. Change directory to +myapp+ and start the web server: - cd myapp; rails server + $ cd myapp; rails server Run with <tt>--help</tt> or <tt>-h</tt> for options. |