aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikhail Dieterle <MikDiet@gmail.com>2011-12-14 02:28:42 +0800
committerMikhail Dieterle <MikDiet@gmail.com>2011-12-14 02:28:42 +0800
commit485e0249d204d92d71359ef06d25987b4852e2f1 (patch)
tree6a64556ece50ea28658cd2720d37c4631c4d18f7
parent2be6df693ab076fa077ac7e0f7df6802f3748ce1 (diff)
downloadrails-485e0249d204d92d71359ef06d25987b4852e2f1.tar.gz
rails-485e0249d204d92d71359ef06d25987b4852e2f1.tar.bz2
rails-485e0249d204d92d71359ef06d25987b4852e2f1.zip
typo in textile markup
-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 3552c68418..b8f541b671 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 +step _n_+ and +step- _n_+ 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.