aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/command_line.md
diff options
context:
space:
mode:
authoryui-knk <spiketeika@gmail.com>2014-12-17 23:28:21 +0900
committeryui-knk <spiketeika@gmail.com>2014-12-17 23:28:21 +0900
commitc559f97fc8d189881ea8fe43c0ec3c4ce43acda8 (patch)
tree7040e48ab5438f2ee7e08c0c6d650ea04c1adaa8 /guides/source/command_line.md
parent340162bf45d3379b796096a9f670ef190d77568e (diff)
downloadrails-c559f97fc8d189881ea8fe43c0ec3c4ce43acda8.tar.gz
rails-c559f97fc8d189881ea8fe43c0ec3c4ce43acda8.tar.bz2
rails-c559f97fc8d189881ea8fe43c0ec3c4ce43acda8.zip
[ci skip] Change three backticks to just one
Diffstat (limited to 'guides/source/command_line.md')
-rw-r--r--guides/source/command_line.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/command_line.md b/guides/source/command_line.md
index e72bc81766..713c91d167 100644
--- a/guides/source/command_line.md
+++ b/guides/source/command_line.md
@@ -24,7 +24,7 @@ There are a few commands that are absolutely critical to your everyday usage of
* `rails dbconsole`
* `rails new app_name`
-All commands can run with ```-h or --help``` to list more information.
+All commands can run with `-h` or `--help` to list more information.
Let's create a simple Rails application to step through each of these commands in context.
@@ -368,7 +368,7 @@ Rake is Ruby Make, a standalone Ruby utility that replaces the Unix utility 'mak
You can get a list of Rake tasks available to you, which will often depend on your current directory, by typing `rake --tasks`. Each task has a description, and should help you find the thing you need.
-To get the full backtrace for running rake task you can pass the option ```--trace``` to command line, for example ```rake db:create --trace```.
+To get the full backtrace for running rake task you can pass the option `--trace` to command line, for example `rake db:create --trace`.
```bash
$ bin/rake --tasks
@@ -384,7 +384,7 @@ rake middleware # Prints out your Rack middleware stack
rake tmp:clear # Clear session, cache, and socket files from tmp/ (narrow w/ tmp:sessions:clear, tmp:cache:clear, tmp:sockets:clear)
rake tmp:create # Creates tmp directories for sessions, cache, sockets, and pids
```
-INFO: You can also use ```rake -T``` to get the list of tasks.
+INFO: You can also use `rake -T` to get the list of tasks.
### `about`