aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-12-14 02:08:40 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-12-14 02:08:40 +0530
commit23bd340a485d72b1a6d30ad55aeec7d3903e0d79 (patch)
tree5bbfd6098462d366f1941557905249c2e3dcb6f2 /railties
parent485e0249d204d92d71359ef06d25987b4852e2f1 (diff)
downloadrails-23bd340a485d72b1a6d30ad55aeec7d3903e0d79.tar.gz
rails-23bd340a485d72b1a6d30ad55aeec7d3903e0d79.tar.bz2
rails-23bd340a485d72b1a6d30ad55aeec7d3903e0d79.zip
copy edits
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/debugging_rails_applications.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/debugging_rails_applications.textile b/railties/guides/source/debugging_rails_applications.textile
index b8f541b671..57c7786636 100644
--- a/railties/guides/source/debugging_rails_applications.textile
+++ b/railties/guides/source/debugging_rails_applications.textile
@@ -465,7 +465,7 @@ Now you should know where you are in the running trace and be able to print the
Use +step+ (abbreviated +s+) to continue running your program until the next logical stopping point and return control to ruby-debug.
-TIP: You can also use +step _n_+ and +step- _n_+ to move forward or backward _n_ steps respectively.
+TIP: You can also use <tt>step<plus> n</tt> and <tt>step- n</tt> to move forward or backward +n+ steps respectively.
You may also use +next+ which is similar to step, but function or method calls that appear within the line of code are executed without stopping. As with step, you may use plus sign to move _n_ steps.