diff options
author | Aditya Sanghi <asanghi@me.com> | 2012-04-18 00:48:59 +0530 |
---|---|---|
committer | Aditya Sanghi <asanghi@me.com> | 2012-04-18 01:03:59 +0530 |
commit | 6f80ea2aec83523640b505ddd5b6e87f0100a85b (patch) | |
tree | 1222f60fa5af5b0a036f53e8a170df1d4719e360 /guides/code/getting_started | |
parent | 0232543e0d885902b5b3ea9c4cf0638d76583a35 (diff) | |
download | rails-6f80ea2aec83523640b505ddd5b6e87f0100a85b.tar.gz rails-6f80ea2aec83523640b505ddd5b6e87f0100a85b.tar.bz2 rails-6f80ea2aec83523640b505ddd5b6e87f0100a85b.zip |
review changes for #5875
Diffstat (limited to 'guides/code/getting_started')
-rw-r--r-- | guides/code/getting_started/README.rdoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/code/getting_started/README.rdoc b/guides/code/getting_started/README.rdoc index 465c180c44..06cc2635b7 100644 --- a/guides/code/getting_started/README.rdoc +++ b/guides/code/getting_started/README.rdoc @@ -87,7 +87,7 @@ Debugger support is available through the debugger command when you start your Mongrel or WEBrick server with --debugger. This means that you can break out of execution at any point in the code, investigate and change the model, and then, resume execution! You need to install debugger to run the server in debugging -mode. With gems, use <tt>sudo gem install debugger</tt>. Example: +mode. With gems, use <tt>gem install debugger</tt>. Example: class WeblogController < ActionController::Base def index |