diff options
author | eparreno <emili@eparreno.com> | 2010-04-08 16:19:26 +0200 |
---|---|---|
committer | eparreno <emili@eparreno.com> | 2010-04-08 16:19:26 +0200 |
commit | f23fff6a6e2d4d22dae7e32dd54f6c9359ff3859 (patch) | |
tree | 2d8e31d9c12a455ba2b945748ca36c6be3df25b8 | |
parent | 9364c70cd5c9d5c6fab08c77fd3ac0f580af09d4 (diff) | |
download | rails-f23fff6a6e2d4d22dae7e32dd54f6c9359ff3859.tar.gz rails-f23fff6a6e2d4d22dae7e32dd54f6c9359ff3859.tar.bz2 rails-f23fff6a6e2d4d22dae7e32dd54f6c9359ff3859.zip |
fix font format in Command Line Basics section
-rw-r--r-- | railties/guides/source/command_line.textile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/railties/guides/source/command_line.textile b/railties/guides/source/command_line.textile index c888212604..c0182f236b 100644 --- a/railties/guides/source/command_line.textile +++ b/railties/guides/source/command_line.textile @@ -18,12 +18,12 @@ h3. Command Line Basics There are a few commands that are absolutely critical to your everyday usage of Rails. In the order of how much you'll probably use them are: -* rails console -* rails server -* rake -* rails generate -* rails dbconsole -* rails app_name +* <tt>rails console</tt> +* <tt>rails server</tt> +* <tt>rake</tt> +* <tt>rails generate</tt> +* <tt>rails dbconsole</tt> +* <tt>rails app_name</tt> Let's create a simple Rails application to step through each of these commands in context. |